Enter values for an Hsl to convert it to Hsv, or vice versa.
Hsl is a cylindrical-coordinate representation of the Rgb color model. This representation rearranges the colors in an attempt to be more intuitive and perceptually relevant than the typical Rgb representation. It's frequently used for computer graphics applications like color pickers and image analysis.
Hsv (also known as Hsb) is similar to Hsl. They're both based on cylindrical geometries, but Hsv is based on a "Hexacone" model while Hsl is based on a "Double Hexacone" model. Read more about the differences on wikipedia.
If you're into color, color theory or design you should definitely check out the award winning Nix Color Sensor. It really is a game changing tool!
All calculations were doing using the open source ColorMine library.
The code used for the Hsl and Hsv conversions can be found on Github:
var hsl = new Hsl();
var hsv = hsl.To<Hsv>();
Color conversions performed using the open source ColorMine library.
If you're into color, color theory or design you should definitely check out the award winning Nix Color Sensor. It really is a game changing tool.