Function rgb_to_hsl

Source
fn rgb_to_hsl([r, g, b]: [f32; 3], hue_hack: bool) -> [f32; 3]
Expand description

Convert RGB to HSL.

Reference: ยง 7.2 of CSS Color 4 spec.

See https://github.com/w3c/csswg-drafts/issues/10695 for an explanation of why hue_hack is needed.