Enter HSV Values
Input or choose HSV values
See Results
View RGB and other formats
Copy or Use
Copy, save, or reuse your color
Choose a color visually, use sliders, or paste a value.
Quick Presets
rgb(255, 99, 71)
tomato
PreviewOriginal
rgb(255, 99, 71)
Lighten 20%
rgb(255, 130, 108)
Darken 20%
rgb(204, 79, 57)
Complementary
rgb(71, 227, 255)
Aa
With White Text
Aa
With Black Text
Other Formats
Color Palette
Did you know?
You can pick a color from your screen in browsers that support the EyeDropper API.
HSV is convenient for humans; RGB is what canvas, shaders, and most graphics pipelines actually consume. Enter the hue, saturation, and value, and copy the matching red, green, and blue channels for use in scripts, animations, or hardware drivers.
Saturation and value accept both bare 0 to 100 numbers and percent-suffixed values; hue accepts integer or float degrees.
Need more notations? Open the Color Converter for HEX, RGB, HSL, LAB, OKLAB, and OKLCH, or use the Color Contrast Checker to validate foreground/background pairs before shipping.
Yes. Both are 0 to 100 percentages; the field also accepts plain decimals without the percent sign.
0 to 360 degrees. Values outside that range are taken modulo 360 to keep the wheel continuous.
Yes. Format the resulting RGB triple as rgb(r, g, b) for any 2D canvas fillStyle or strokeStyle.