HEX to RGB converter
Turn any hex color code into its red, green and blue values instantly.
3, 6 or 8 hex digits, with or without #
Three values 0–255
All values for this color
HEX to RGB reference table
Common colors with their Hexadecimal and Red, Green, Blue values. Select a name to open its full color page.
| Color | Name | hex | rgb |
|---|---|---|---|
| Black | #000000 | 0, 0, 0 | |
| White | #FFFFFF | 255, 255, 255 | |
| Red | #FF0000 | 255, 0, 0 | |
| Green | #008000 | 0, 128, 0 | |
| Blue | #0000FF | 0, 0, 255 | |
| Yellow | #FFFF00 | 255, 255, 0 | |
| Cyan | #00FFFF | 0, 255, 255 | |
| Magenta | #FF00FF | 255, 0, 255 | |
| Orange | #FFA500 | 255, 165, 0 | |
| Purple | #800080 | 128, 0, 128 | |
| Pink | #FFC0CB | 255, 192, 203 | |
| Brown | #A52A2A | 165, 42, 42 | |
| Gray | #808080 | 128, 128, 128 | |
| Navy | #000080 | 0, 0, 128 | |
| Teal | #008080 | 0, 128, 128 | |
| Maroon | #800000 | 128, 0, 0 | |
| Olive | #808000 | 128, 128, 0 | |
| Lime | #00FF00 | 0, 255, 0 | |
| Silver | #C0C0C0 | 192, 192, 192 | |
| Gold | #FFD700 | 255, 215, 0 |
Frequently asked questions
How do I convert a hex code to RGB?
Split the six-digit hex code into three pairs and read each pair as a base-16 number from 0 to 255. For example #3B82F6 is 3B = 59 red, 82 = 130 green, F6 = 246 blue. This tool does it for you as you type.
What is the difference between hex and RGB?
They describe the same sRGB color in different notation. Hex is a compact base-16 string used in CSS and design tools; RGB lists the same three channels as decimal numbers from 0 to 255. Neither loses information converting to the other.
Does a 3-digit hex code work?
Yes. A shorthand like #3AF expands by doubling each digit to #33AAFF before conversion, so it maps to a valid RGB triple.