Hex to RGB Color Converter 
 Enter 6 digits hex color code and press the Convert button: 
Hex to RGB color tables 
| Color Name | Hex | RGB | Preview | 
|---|---|---|---|
| Aluminum | 9f9586 | (159, 149, 134) | |
| Amber | ffbf00 | (255, 191, 0) | |
| Black | 000000 | (0, 0, 0) | |
| Blackberry | 43182f | (67, 24, 47) | |
| Blood | 770001 | (119, 0, 1) | |
| Blue | 0000ff | (0, 0, 255) | |
| Brick | a03623 | (160, 54, 35) | |
| Bronze | a87900 | (168, 121, 0) | |
| Brown | 653700 | (101, 55, 0) | |
| Chocolate | d2691e | (210, 105, 30) | |
| Coffee | 6f4e37 | (111, 78, 55) | |
| Concrete | d2d1cd | (210, 209, 205) | |
| Copper | b87333 | (184, 115, 51) | |
| Cream | ffffc2 | (255, 255, 194) | |
| Crimson | 8c000f | (140, 0, 15) | |
| Cyan | 0ff0fe | (15, 240, 254) | |
| Flamingo | e1634f | (225, 99, 79) | |
| Fuchsia | ed0dd9 | (237, 13, 217) | |
| Gold | ffd700 | (255, 215, 0) | |
| Golden | f5bf03 | (245, 191, 3) | |
| Green | 00ff00 | (0, 255, 0) | |
| Grey | 808080 | (128, 128, 128) | |
| Indigo | 4b0082 | (75, 0, 130) | |
| Latte | c5a582 | (197, 165, 130) | |
| Leaf | 71aa34 | (113, 170, 52) | |
| Magenta | ff00ff | (255, 0, 255) | |
| Maroon | 800000 | (128, 0, 0) | |
| Navy | 01153e | (1, 21, 62) | |
| Olive | 808010 | (128, 128, 16) | |
| Orange | ffa500 | (255, 165, 0) | |
| Peach | ffb07c | (255, 176, 124) | |
| Peanut | 7a4434 | (122, 68, 52) | |
| Pink | ffc0cb | (255, 192, 203) | |
| Porcelain | dddcdb | (221, 220, 219) | |
| Purple | 800080 | (128, 0, 128) | |
| Red | ff0000 | (255, 0, 0) | |
| Rock | 5a4d41 | (90, 77, 65) | |
| Rose | ff007f | (255, 0, 127) | |
| Ruby | ca0147 | (202, 1, 71) | |
| Sand | e2ca76 | (226, 202, 118) | |
| Sapphire | 0f52ba | (15, 82, 186) | |
| Silver | c0c0c0 | (192, 192, 192) | |
| Steel | 797979 | (121, 121, 121) | |
| Sun | ef8e38 | (239, 142, 56) | |
| Teal | 008080 | (0, 128, 128) | |
| Turquoise | 06c2ac | (6, 194, 172) | |
| White | ffffff | (255, 255, 255) | |
| Wine | 80013f | (128, 1, 63) | |
| Wood | 855e42 | (133, 94, 66) | |
| Yellow | ffff00 | (255, 255, 0) | 
Full name of colours
Hex to RGB conversion 
- Get the 2 left digits of the hex color code and convert to decimal value to get the red color level.
 - Get the 2 middle digits of the hex color code and convert to decimal value to get the green color level.
 - Get the 2 right digits of the hex color code and convert to decimal value to get the blue color level.
 
Example #1: Convert red hex color code FF0000 to RGB color
- Hex = FF0000
 - So the RGB colors are: 
- R = FF16 = 25510
 - G = 0016 = 010
 - B = 0016 = 010
 
 - RGB = (255, 0, 0)
 
Example #2: Convert red hex color code D4AF37 to RGB color
- Hex = D4AF37
 - So the RGB colors are: 
- R = D416 = 21210
 - G = AF16 = 17510
 - B = 3716 = 5510
 
 - RGB = (212, 175, 55)
 
See also 
- RGB to hex converter
 - How to convert hexadecimal color code to RGB color?
 - What is the RGB color space