Hex Color Converter
Convert colors between hex, RGB, and HSL formats.
See a live color preview as you type.
Color Conversion
Color format conversions:
Hex → RGB:
R = hex digits 1-2 (base 16 → decimal)
G = hex digits 3-4
B = hex digits 5-6
RGB → HSL:
- Normalize R, G, B to 0–1 range
- Find min and max channel values
L = (max + min) / 2S = (max − min) / (1 − |2L − 1|)if max ≠ minHdepends on which channel is max
Common colors:
#FF0000= rgb(255, 0, 0) = hsl(0, 100%, 50%) — Red#00FF00= rgb(0, 255, 0) = hsl(120, 100%, 50%) — Green#0000FF= rgb(0, 0, 255) = hsl(240, 100%, 50%) — Blue
Enter a hex value (with or without #) to convert.