bulma/sass/utilities/functions.sass

68 lines
2.5 KiB
Sass
Raw Permalink Normal View History

2018-04-08 13:38:59 +00:00
@function mergeColorMaps($bulma-colors, $custom-colors)
2019-05-20 20:19:36 +00:00
// We return at least Bulma's hard-coded colors
$merged-colors: $bulma-colors
2018-04-08 15:06:57 +00:00
2019-05-20 20:19:36 +00:00
// We want a map as input
@if type-of($custom-colors) == 'map'
@each $name, $components in $custom-colors
2019-05-20 20:19:36 +00:00
// The color name should be a string
// and the components either a single color
// or a colors list with at least one element
@if type-of($name) == 'string' and (type-of($components) == 'list' or type-of($components) == 'color') and length($components) >= 1
2018-04-08 13:38:59 +00:00
$color-base: null
2019-05-20 20:19:36 +00:00
$value: null
2018-04-08 15:06:57 +00:00
2019-05-20 20:19:36 +00:00
// The param can either be a single color
2018-04-08 15:06:57 +00:00
// or a list of 2 colors
2018-04-08 13:38:59 +00:00
@if type-of($components) == 'color'
$color-base: $components
2019-05-20 20:19:36 +00:00
$value: $components
2018-04-08 13:38:59 +00:00
@else if type-of($components) == 'list'
$color-base: nth($components, 1)
2019-05-20 20:19:36 +00:00
$color-invert: null
// Check if the invert color is provided,
// otherwise compute it
@if length($components) > 1
$color-invert: nth($components, 2)
@else
$color-invert: findColorInvert($color-base)
2019-05-20 20:19:36 +00:00
$value: ($color-base, $color-invert)
2018-04-08 15:06:57 +00:00
2019-05-20 20:19:36 +00:00
// We only want to merge the map if the color base is an actual color
@if type-of($color-base) == 'color'
// We merge this colors elements as map with Bulma's colors map
// (we can override them this way, no multiple definition for the same name)
// $merged-colors: map_merge($merged-colors, ($name: ($color-base, $color-invert)))
$merged-colors: map_merge($merged-colors, ($name: $value))
2018-04-08 15:06:57 +00:00
@return $merged-colors
2016-01-24 00:03:43 +00:00
@function powerNumber($number, $exp)
$value: 1
@if $exp > 0
@for $i from 1 through $exp
$value: $value * $number
@else if $exp < 0
@for $i from 1 through -$exp
$value: $value / $number
@return $value
@function colorLuminance($color)
$color-rgb: ('red': red($color),'green': green($color),'blue': blue($color))
@each $name, $value in $color-rgb
2016-01-24 00:03:43 +00:00
$adjusted: 0
$value: $value / 255
@if $value < 0.03928
$value: $value / 12.92
@else
$value: ($value + .055) / 1.055
$value: powerNumber($value, 2)
$color-rgb: map-merge($color-rgb, ($name: $value))
@return (map-get($color-rgb, 'red') * .2126) + (map-get($color-rgb, 'green') * .7152) + (map-get($color-rgb, 'blue') * .0722)
2016-01-24 00:03:43 +00:00
@function findColorInvert($color)
2016-09-25 16:44:01 +00:00
@if (colorLuminance($color) > 0.55)
2016-10-30 10:41:53 +00:00
@return rgba(#000, 0.7)
2016-01-24 00:03:43 +00:00
@else
2016-10-30 10:41:53 +00:00
@return #fff