RGB
RGB describes a color by its red, green, and blue channels — each on a 0–255 scale (8 bits per channel). It is what computer monitors and most digital cameras emit, and what every other web color format ultimately maps to.
rgb(255, 107, 53) = hsv(16, 79%, 100%)
Convert RGB color values to HSV color values exactly, via the canonical 8-bit sRGB representation. Every result you see is the same number the W3C CSS spec would produce — no proprietary adjustments, no perceptual fudging. Try the live converter below, or scan the reference table for twenty-five named colors and their RGB ↔ HSV pairs.
rgb(R, G, B) or just R, G, B with each value 0–255
hsv(H, S%, V%) with hue 0–360, saturation and value 0–100
Enter the RGB color above. Convertitive accepts rgb(r, g, b) or just r, g, b with each value 0–255.
The result appears the moment your input parses. For example, rgb(255, 107, 53) (Convertitive's coral accent) becomes hsv(16, 79%, 100%).
Click the copy button to grab the result. The preview swatch lives-updates so you can sanity-check the conversion at a glance.
Twenty-five well-known colors with their RGB and HSVrepresentations side by side. The swatches are rendered directly from the computed RGB, so what you see is exactly what you will ship.
| Name | RGB | HSV | |
|---|---|---|---|
| Black | rgb(0, 0, 0) | hsv(0, 0%, 0%) | |
| White | rgb(255, 255, 255) | hsv(0, 0%, 100%) | |
| Red | rgb(255, 0, 0) | hsv(0, 100%, 100%) | |
| Lime | rgb(0, 255, 0) | hsv(120, 100%, 100%) | |
| Blue | rgb(0, 0, 255) | hsv(240, 100%, 100%) | |
| Yellow | rgb(255, 255, 0) | hsv(60, 100%, 100%) | |
| Cyan | rgb(0, 255, 255) | hsv(180, 100%, 100%) | |
| Magenta | rgb(255, 0, 255) | hsv(300, 100%, 100%) | |
| Silver | rgb(192, 192, 192) | hsv(0, 0%, 75%) | |
| Gray | rgb(128, 128, 128) | hsv(0, 0%, 50%) | |
| Maroon | rgb(128, 0, 0) | hsv(0, 100%, 50%) | |
| Olive | rgb(128, 128, 0) | hsv(60, 100%, 50%) | |
| Green | rgb(0, 128, 0) | hsv(120, 100%, 50%) | |
| Teal | rgb(0, 128, 128) | hsv(180, 100%, 50%) | |
| Navy | rgb(0, 0, 128) | hsv(240, 100%, 50%) | |
| Purple | rgb(128, 0, 128) | hsv(300, 100%, 50%) | |
| Orange | rgb(255, 165, 0) | hsv(39, 100%, 100%) | |
| Pink | rgb(255, 192, 203) | hsv(350, 25%, 100%) | |
| Gold | rgb(255, 215, 0) | hsv(51, 100%, 100%) | |
| Tomato | rgb(255, 99, 71) | hsv(9, 72%, 100%) | |
| Coral | rgb(255, 127, 80) | hsv(16, 69%, 100%) | |
| Salmon | rgb(250, 128, 114) | hsv(6, 54%, 98%) | |
| Indigo | rgb(75, 0, 130) | hsv(275, 100%, 51%) | |
| Chocolate | rgb(210, 105, 30) | hsv(25, 86%, 82%) | |
| Crimson | rgb(220, 20, 60) | hsv(348, 91%, 86%) |
RGB describes a color by its red, green, and blue channels — each on a 0–255 scale (8 bits per channel). It is what computer monitors and most digital cameras emit, and what every other web color format ultimately maps to.
HSV (also called HSB) describes a color by hue (0–360°), saturation (0–100%), and value (0–100%). It is the format inside almost every color picker — including the one in Figma, Sketch, and Adobe — because moving the V slider down toward 0 reliably darkens any color without changing its hue.