Utility to format a HSL set of values into a string.
https://en.wikipedia.org/wiki/HSL_and_HSV
hsl(120, 100, 40); // -> 'hsl(120, 100, 40)' Copy
hsl(120, 100, 40); // -> 'hsl(120, 100, 40)'
The hue, must be a number between 0 and 360 inclusive.
The saturation, must be a number between 0 and 100 inclusive.
The lightness, must be a number between 0 and 100 inclusive, 0 will make it black, 100 will make it white.
Utility to format a HSL set of values into a string.
See
https://en.wikipedia.org/wiki/HSL_and_HSV
Example