In CSS, the hsla function is simply in alias of rgb. You can specify an alpha to rgb, or omit it with rgba.
In CSS, the rgba function is simply in alias of rgb. You can specify an alpha to rgb, or omit it with rgba.
The hsl function is the same as in CSS color specifications.
The rgb function is the same as in CSS color specifications.
Convert a Color in-place to another colorspace.
The Color type is a tagged union that can hold one color in a CSS-defined colorspace. This correspond to both "specified", "computed", and "used" colors in CSS specification. In typical use, you'll want to map to sRGB 32-bit RGBA quadruplet, and the function for this is called: toRGBA8(). Reference: https://www.w3.org/TR/css-color-4/
Monomorphic color type, to represent any tristimulus + alpha.