Hex to RGB Color Converter
Convert hex color codes to RGB (and HSL) instantly, with a live preview of the resulting color. Essential for designers and developers.
How it works
A hex color like #FF5733 is split into three pairs:
- Red: 0xFF = 255
- Green: 0x57 = 87
- Blue: 0x33 = 51
Popular colors reference
| Color | Hex | RGB |
|---|---|---|
| White | #FFFFFF | rgb(255, 255, 255) |
| Black | #000000 | rgb(0, 0, 0) |
| Red | #FF0000 | rgb(255, 0, 0) |
| Green | #00FF00 | rgb(0, 255, 0) |
| Blue | #0000FF | rgb(0, 0, 255) |
| Indigo | #4F46E5 | rgb(79, 70, 229) |
| Cyan | #06B6D4 | rgb(6, 182, 212) |
FAQ
What does the # mean in hex colors? It’s a prefix indicating the value is hexadecimal. #FF0000 = FF (red) + 00 (green) + 00 (blue).
What about transparency? 8-digit hex like #FF573380 adds an alpha channel (80 = 50% opacity).