Convert HEX color codes into HSV, the hue, saturation, and value model used by most color pickers and design tools.
Input formats
Provide colors as 3, 4, 6, or 8-digit hex codes, with or without a leading #. Each line is parsed independently in batch mode.
HSV output
The output prints as hsv(h, s%, v%), with hue in degrees from 0 to 360 and saturation and value as percentages. #FF5733 becomes hsv(11, 80%, 100%).
Value vs lightness
Value in HSV is the brightness of the color at full saturation. A pure hue at 100% saturation and 100% value is as vivid as that hue gets, unlike HSL’s lightness, which fades a fully saturated color toward white as lightness rises above 50%.
Batch processing
Paste multiple hex codes, one per line, to convert the full list at once. Use the color picker to preview and adjust the currently selected line.