HSV to RGB Converter

Convert HSV picker values into RGB for CSS, canvas, and color previews.

RGB Result
rgb(31, 143, 255)

Common HSV to RGB Examples

HSV RGB Color
hsv(0, 100%, 100%) rgb(255, 0, 0)
hsv(120, 100%, 100%) rgb(0, 255, 0)
hsv(210, 88%, 100%) rgb(31, 143, 255)

When HSV Helps

HSV is useful for building color pickers because value maps cleanly to brightness. RGB output is useful when you need a value for CSS, canvas, or another color tool.

Reading the HSV Controls

Hue selects the position on the color wheel, saturation controls color intensity, and value controls brightness. Lower saturation moves the result toward gray; lower value moves it toward black.

FAQ

Is HSV the same as HSB? v

Yes. HSV and HSB usually describe the same model: hue, saturation, and value or brightness.

Can I paste hsv() values? v

Yes. Paste values like hsv(210, 88%, 100%) and the sliders will update automatically.

Why can HSV to RGB round by one channel value? v

RGB channels are whole numbers from 0 to 255, so some HSV percentages round to the nearest available channel value.

Related Color Tools

Open the next tool for this color task.