hsl
hsl(
options?): [number,number,number,number]
Defined in: src/color.ts:68
[hue, saturation, lightness, alpha], with hue in degrees.
Alpha is 1 unless you ask for it, so the tuple is always four long.
Parameters
Section titled “Parameters”options?
Section titled “options?”ColorOptions = {}
Returns
Section titled “Returns”[number, number, number, number]
Example
Section titled “Example”hsl(); // [ 214, 0.62, 0.55, 1 ]hsl({ hue: [200, 240] }); // blues onlyhsl({ saturation: 0.8, lightness: [0.4, 0.6] });