HSV to RGB Converter
Convert HSV (Hue, Saturation, Value) to RGB values.
About this conversion
HSV (Hue, Saturation, Value) is the color model behind most visual color pickers. You select a hue on the color wheel, drag horizontally for saturation, and vertically for brightness (value). It is the dominant model in tools like Photoshop, Figma, and many game engines.
However, when you need to use a color in CSS, pass it to an API, or set pixel data in a canvas, you almost always need RGB. This converter takes your HSV values and computes the exact R, G, B integers (0–255) in real time, so you can move seamlessly between a visual color picker workflow and code.
The conversion is lossless within the sRGB gamut. Adjusting the hue slider rotates through the spectrum, saturation controls vibrancy from gray to fully saturated, and value controls brightness from black to the full color. The live preview and copy buttons make it easy to grab exactly the RGB value you need.
Test your colors in print
After converting your colors, print a test page to verify they look correct on paper:
Color conversions are mathematical approximations. For critical color work, verify against physical swatch books and printed proofs. See our full disclaimer.