Convert between HEX, RGB, HSL, and HSV color formats
HEX
#FF5733
RGB
rgb(255, 87, 51)
R: 255, G: 87, B: 51
HSL
hsl(11, 100%, 60%)
H: 11°, S: 100%, L: 60%
HSV
hsv(11, 80%, 100%)
H: 11°, S: 80%, V: 100%
HEX (Hexadecimal)
6-digit code representing RGB values in base 16. Format: #RRGGBB where each pair is 00-FF.
RGB (Red, Green, Blue)
Each channel from 0-255. Used in CSS as rgb(r, g, b). Additive color model used by screens.
HSL (Hue, Saturation, Lightness)
Hue: 0-360° color wheel. Saturation: 0-100% intensity. Lightness: 0-100% from black to white.
HSV (Hue, Saturation, Value)
Similar to HSL but Value represents brightness. Often used in color pickers and design software.