Convert standard RGB color definitions into HSV, the hue, saturation, and value model used by most color pickers and design tools.
Input formats
Provide colors using the standard rgb(r, g, b) syntax with channel values ranging from 0 to 255. 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. rgb(255, 87, 51) 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 RGB values, one per line, to convert the full list at once. Use the color picker to preview and adjust the currently selected line.