HEX
HEX (hexadecimal) is the standard color notation on the web: a # followed by six hex digits, two per RGB channel. #FF0000 is pure red, #000000 is black, #FFFFFF is white. The 3-digit shorthand #F00 expands to #FF0000.
#FF6B35 = hsv(16, 79%, 100%)
Convert hexadecimal 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 HEX ↔ HSV pairs.
Six hex digits (#RRGGBB) or three digits (#RGB)
hsv(H, S%, V%) with hue 0–360, saturation and value 0–100
Enter the HEX color above. Convertitive accepts six hex digits (#rrggbb) or three digits (#rgb).
The result appears the moment your input parses. For example, #FF6B35 (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 HEX 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 | HEX | HSV | |
|---|---|---|---|
| Black | #000000 | hsv(0, 0%, 0%) | |
| White | #FFFFFF | hsv(0, 0%, 100%) | |
| Red | #FF0000 | hsv(0, 100%, 100%) | |
| Lime | #00FF00 | hsv(120, 100%, 100%) | |
| Blue | #0000FF | hsv(240, 100%, 100%) | |
| Yellow | #FFFF00 | hsv(60, 100%, 100%) | |
| Cyan | #00FFFF | hsv(180, 100%, 100%) | |
| Magenta | #FF00FF | hsv(300, 100%, 100%) | |
| Silver | #C0C0C0 | hsv(0, 0%, 75%) | |
| Gray | #808080 | hsv(0, 0%, 50%) | |
| Maroon | #800000 | hsv(0, 100%, 50%) | |
| Olive | #808000 | hsv(60, 100%, 50%) | |
| Green | #008000 | hsv(120, 100%, 50%) | |
| Teal | #008080 | hsv(180, 100%, 50%) | |
| Navy | #000080 | hsv(240, 100%, 50%) | |
| Purple | #800080 | hsv(300, 100%, 50%) | |
| Orange | #FFA500 | hsv(39, 100%, 100%) | |
| Pink | #FFC0CB | hsv(350, 25%, 100%) | |
| Gold | #FFD700 | hsv(51, 100%, 100%) | |
| Tomato | #FF6347 | hsv(9, 72%, 100%) | |
| Coral | #FF7F50 | hsv(16, 69%, 100%) | |
| Salmon | #FA8072 | hsv(6, 54%, 98%) | |
| Indigo | #4B0082 | hsv(275, 100%, 51%) | |
| Chocolate | #D2691E | hsv(25, 86%, 82%) | |
| Crimson | #DC143C | hsv(348, 91%, 86%) |
HEX (hexadecimal) is the standard color notation on the web: a # followed by six hex digits, two per RGB channel. #FF0000 is pure red, #000000 is black, #FFFFFF is white. The 3-digit shorthand #F00 expands to #FF0000.
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.