- red($color) : Gets the red component of a color.
- green($color) : Gets the green component of a color.
- blue($color) : Gets the blue component of a color.
- mix($color1, $color2, [$weight])
- lighten($color, $amount) : Makes a color lighter.
- darken($color, $amount) : Makes a color darker.
- invert($color, [$weight]) : Returns the inverse of a color.
- percentage($number) : Converts a unitless number to a percentage.
- round($number) : Rounds a number to the nearest whole number.
- ceil($number) : Rounds a number up to the next whole number.
- floor($number) : Rounds a number down to the previous whole number.
- abs($number) : Returns the absolute value of a number.
- min($numbers…) : Finds the minimum of several numbers.
- max($numbers…) : Finds the maximum of several numbers.
- random()
- map-get($map, $key) : Returns the value in a map associated with a given key.
- map-merge($map1, $map2) : Merges two maps together into a new map.
- map-remove($map, $keys…) : Returns a new map with keys removed.
- map-keys($map) : Returns a list of all keys in a map.
- map-values($map) : Returns a list of all values in a map.
- map-has-key($map, $key) : Returns whether a map has a value associated with a given key.