# Functions
Adjust the hue of the given color by the specified number of degrees.
Darken the given color by a certain percent.
Desaturate the given color by a certain percent.
Return whether two colors are equivalent in the 24-bit RGB (RGB255) color space.
Given HSL values (where hue is given in degrees (out of 360°), saturation and lightness are [0, 1]), return the corresponding RGB values (where each value is [0, 255]).
Given HSL values (where hue is given in degrees (out of 360°), saturation and value are [0, 1]), return the corresponding RGB values (where each value is [0, 255]).
Takes a color temperature in degrees Kelvin and returns a valid Color for that temperature.
Lighten the given color by a certain percent.
Mix two colors in equal parts, producing a third.
Mix two colors, producing a third.
Parse the given value into a Color or panic.
Parse the given value into a Color or return an error.
Given RGB values (where each value is [0, 255]), return the hue (in degrees), saturation, and lightness (where each is [0, 1]).
Saturate the given color by a certain percent.