HSL to RGB color conversion
algorithm, colors, hsl, rgb
Solution
Found the easiest way, python to the rescue :D
`colorsys.hls_to_rgb(h, l, s)`
Convert the color from HLS coordinates to RGB coordinates.
Problem
I am looking for an algorithm to convert between HSL color to RGB. It seems to me that HSL is not very widely used so I am not having much luck searching for a converter.
Related problems
- RGB to HSV color in javascript?
- Javascript convert HSB/HSV color to RGB accurately
- Why doesn't this Javascript RGB to HSL code work?
- How to create a phase plot for a 2D array of complex numbers with matplotlib?
- convert Hsl to rgb and hex
- RGB to HSL and back, calculation problems
- Convert HSB/HSV color to HSL