RGB to HEX converter
Convert red, green and blue values into a hex color code for CSS and design tools.
Three values 0–255
3, 6 or 8 hex digits, with or without #
All values for this color
RGB to HEX reference table
Common colors with their Red, Green, Blue and Hexadecimal values. Select a name to open its full color page.
| Color | Name | rgb | hex |
|---|---|---|---|
| Black | 0, 0, 0 | #000000 | |
| White | 255, 255, 255 | #FFFFFF | |
| Red | 255, 0, 0 | #FF0000 | |
| Green | 0, 128, 0 | #008000 | |
| Blue | 0, 0, 255 | #0000FF | |
| Yellow | 255, 255, 0 | #FFFF00 | |
| Cyan | 0, 255, 255 | #00FFFF | |
| Magenta | 255, 0, 255 | #FF00FF | |
| Orange | 255, 165, 0 | #FFA500 | |
| Purple | 128, 0, 128 | #800080 | |
| Pink | 255, 192, 203 | #FFC0CB | |
| Brown | 165, 42, 42 | #A52A2A | |
| Gray | 128, 128, 128 | #808080 | |
| Navy | 0, 0, 128 | #000080 | |
| Teal | 0, 128, 128 | #008080 | |
| Maroon | 128, 0, 0 | #800000 | |
| Olive | 128, 128, 0 | #808000 | |
| Lime | 0, 255, 0 | #00FF00 | |
| Silver | 192, 192, 192 | #C0C0C0 | |
| Gold | 255, 215, 0 | #FFD700 |
Frequently asked questions
How do I convert RGB to hex?
Convert each of the red, green and blue numbers (0–255) to a two-digit base-16 value and concatenate them behind a # sign. For example 59, 130, 246 becomes #3B82F6. This converter does the base-16 math for you.
Why is my hex code uppercase?
Hex color codes are case-insensitive — #3b82f6 and #3B82F6 are identical. We display uppercase for consistency and readability, which matches how most style guides format them.
Can RGB always be written as hex?
Any RGB value with whole channels from 0 to 255 maps exactly to a six-digit hex code. Alpha transparency adds a fourth pair, giving an eight-digit hex.