utils.colour namespace
Functions
Function | Description |
|---|---|
Blend two colours together, using the specified factor to indicate the weight given to the first colour. | |
Converts a colour to RGB. | |
Converts an HSV triplet to hex representation. | |
Convert a hue (HSV model) into an RGB hex triplet. | |
Parses a colour from a string. .parse('red') = '#ff0000' .parse('#f00') = '#ff0000' .parse('#ff0000') = '#ff0000' .parse('0xff0000') = '#ff0000' .parse('rgb(255, 0, 0)') = '#ff0000' | |
Converts a colour from RGB to hex representation. |
Variables
Variable | Description |
|---|---|
A map that contains the 16 basic colour keywords as defined by W3C: https://www.w3.org/TR/2018/REC-css-color-3-20180619/#html4 The keys of this map are the lowercase "readable" names of the colours, while the values are the "hex" values. |