RGB Colour Codes
RGB colour codes chart and colour picker. Pick a colour using the sliders or enter a hex code. Hover over the colour chart to see the hex and RGB values.
RGB Colour Picker
RGB Colour Codes Chart
Hover or click on a colour to get the hex and RGB codes:
RGB Colour Space
RGB colour space or RGB colour system constructs all colours from the combination of Red, Green, and Blue. Each component uses 8 bits with integer values from 0 to 255, making 256×256×256 = 16,777,216 possible colours. Each pixel in an LED monitor displays colours this way, by combining red, green, and blue LEDs. When a pixel is set to 0, the LED is off; at 255, it is fully on.
RGB Colour Format & Calculation
Each RGB colour is a 24-bit number: 8 bits for Red (bits 23–16), 8 bits for Green (bits 15–8), and 8 bits for Blue (bits 7–0).
| Red (bits 23–16) | Green (bits 15–8) | Blue (bits 7–0) | |||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
| R7 | R6 | R5 | R4 | R3 | R2 | R1 | R0 | G7 | G6 | G5 | G4 | G3 | G2 | G1 | G0 | B7 | B6 | B5 | B4 | B3 | B2 | B1 | B0 |
Formula: RGB = (R × 65536) + (G × 256) + B
Calculation examples
| Colour | Name | Hex | R | G | B | Decimal |
|---|---|---|---|---|---|---|
| White | #FFFFFF | 255 | 255 | 255 | 16777215 | |
| Red | #FF0000 | 255 | 0 | 0 | 16711680 | |
| Blue | #0000FF | 0 | 0 | 255 | 255 | |
| Lime | #00FF00 | 0 | 255 | 0 | 65280 | |
| Gray | #808080 | 128 | 128 | 128 | 8421504 | |
| Yellow | #FFFF00 | 255 | 255 | 0 | 16776960 |
RGB Colour Table
Basic colours
| Colour | Name | HTML/CSS Name | Hex Code #RRGGBB | Decimal Code (R,G,B) |
|---|---|---|---|---|
| Black | black | #000000 | (0, 0, 0) | |
| White | white | #FFFFFF | (255, 255, 255) | |
| Red | red | #FF0000 | (255, 0, 0) | |
| Lime | lime | #00FF00 | (0, 255, 0) | |
| Blue | blue | #0000FF | (0, 0, 255) | |
| Yellow | yellow | #FFFF00 | (255, 255, 0) | |
| Cyan | cyan | #00FFFF | (0, 255, 255) | |
| Magenta | magenta | #FF00FF | (255, 0, 255) | |
| Silver | silver | #C0C0C0 | (192, 192, 192) | |
| Gray | gray | #808080 | (128, 128, 128) | |
| Maroon | maroon | #800000 | (128, 0, 0) | |
| Olive | olive | #808000 | (128, 128, 0) | |
| Green | green | #008000 | (0, 128, 0) | |
| Purple | purple | #800080 | (128, 0, 128) | |
| Teal | teal | #008080 | (0, 128, 128) | |
| Navy | navy | #000080 | (0, 0, 128) |
Extended Named Colours
| Colour | Colour Name | Hex Code #RRGGBB | Decimal Code (R,G,B) |
|---|---|---|---|
| Maroon | #800000 | (128, 0, 0) | |
| Dark Red | #8B0000 | (139, 0, 0) | |
| Brown | #A52A2A | (165, 42, 42) | |
| Firebrick | #B22222 | (178, 34, 34) | |
| Crimson | #DC143C | (220, 20, 60) | |
| Red | #FF0000 | (255, 0, 0) | |
| Tomato | #FF6347 | (255, 99, 71) | |
| Coral | #FF7F50 | (255, 127, 80) | |
| Indian Red | #CD5C5C | (205, 92, 92) | |
| Light Coral | #F08080 | (240, 128, 128) | |
| Dark Salmon | #E9967A | (233, 150, 122) | |
| Salmon | #FA8072 | (250, 128, 114) | |
| Light Salmon | #FFA07A | (255, 160, 122) | |
| Orange Red | #FF4500 | (255, 69, 0) | |
| Dark Orange | #FF8C00 | (255, 140, 0) | |
| Orange | #FFA500 | (255, 165, 0) | |
| Gold | #FFD700 | (255, 215, 0) | |
| Dark Golden Rod | #B8860B | (184, 134, 11) | |
| Golden Rod | #DAA520 | (218, 165, 32) | |
| Pale Golden Rod | #EEE8AA | (238, 232, 170) | |
| Dark Khaki | #BDB76B | (189, 183, 107) | |
| Khaki | #F0E68C | (240, 230, 140) | |
| Olive | #808000 | (128, 128, 0) | |
| Yellow | #FFFF00 | (255, 255, 0) | |
| Yellow Green | #9ACD32 | (154, 205, 50) | |
| Dark Olive Green | #556B2F | (85, 107, 47) | |
| Olive Drab | #6B8E23 | (107, 142, 35) | |
| Lawn Green | #7CFC00 | (124, 252, 0) | |
| Chartreuse | #7FFF00 | (127, 255, 0) | |
| Green Yellow | #ADFF2F | (173, 255, 47) | |
| Dark Green | #006400 | (0, 100, 0) | |
| Green | #008000 | (0, 128, 0) | |
| Forest Green | #228B22 | (34, 139, 34) | |
| Lime | #00FF00 | (0, 255, 0) | |
| Lime Green | #32CD32 | (50, 205, 50) | |
| Light Green | #90EE90 | (144, 238, 144) | |
| Pale Green | #98FB98 | (152, 251, 152) | |
| Dark Sea Green | #8FBC8F | (143, 188, 143) | |
| Medium Spring Green | #00FA9A | (0, 250, 154) | |
| Spring Green | #00FF7F | (0, 255, 127) | |
| Sea Green | #2E8B57 | (46, 139, 87) | |
| Medium Aqua Marine | #66CDAA | (102, 205, 170) | |
| Medium Sea Green | #3CB371 | (60, 179, 113) | |
| Light Sea Green | #20B2AA | (32, 178, 170) | |
| Dark Slate Gray | #2F4F4F | (47, 79, 79) | |
| Teal | #008080 | (0, 128, 128) | |
| Dark Cyan | #008B8B | (0, 139, 139) | |
| Aqua | #00FFFF | (0, 255, 255) | |
| Light Cyan | #E0FFFF | (224, 255, 255) | |
| Dark Turquoise | #00CED1 | (0, 206, 209) | |
| Turquoise | #40E0D0 | (64, 224, 208) | |
| Medium Turquoise | #48D1CC | (72, 209, 204) | |
| Pale Turquoise | #AFEEEE | (175, 238, 238) | |
| Aqua Marine | #7FFFD4 | (127, 255, 212) | |
| Powder Blue | #B0E0E6 | (176, 224, 230) | |
| Cadet Blue | #5F9EA0 | (95, 158, 160) | |
| Steel Blue | #4682B4 | (70, 130, 180) | |
| Corn Flower Blue | #6495ED | (100, 149, 237) | |
| Deep Sky Blue | #00BFFF | (0, 191, 255) | |
| Dodger Blue | #1E90FF | (30, 144, 255) | |
| Light Blue | #ADD8E6 | (173, 216, 230) | |
| Sky Blue | #87CEEB | (135, 206, 235) | |
| Light Sky Blue | #87CEFA | (135, 206, 250) | |
| Midnight Blue | #191970 | (25, 25, 112) | |
| Navy | #000080 | (0, 0, 128) | |
| Dark Blue | #00008B | (0, 0, 139) | |
| Medium Blue | #0000CD | (0, 0, 205) | |
| Blue | #0000FF | (0, 0, 255) | |
| Royal Blue | #4169E1 | (65, 105, 225) | |
| Blue Violet | #8A2BE2 | (138, 43, 226) | |
| Indigo | #4B0082 | (75, 0, 130) | |
| Dark Slate Blue | #483D8B | (72, 61, 139) | |
| Slate Blue | #6A5ACD | (106, 90, 205) | |
| Medium Slate Blue | #7B68EE | (123, 104, 238) | |
| Medium Purple | #9370DB | (147, 112, 219) | |
| Dark Magenta | #8B008B | (139, 0, 139) | |
| Dark Violet | #9400D3 | (148, 0, 211) | |
| Dark Orchid | #9932CC | (153, 50, 204) | |
| Medium Orchid | #BA55D3 | (186, 85, 211) | |
| Purple | #800080 | (128, 0, 128) | |
| Thistle | #D8BFD8 | (216, 191, 216) | |
| Plum | #DDA0DD | (221, 160, 221) | |
| Violet | #EE82EE | (238, 130, 238) | |
| Magenta | #FF00FF | (255, 0, 255) | |
| Orchid | #DA70D6 | (218, 112, 214) | |
| Medium Violet Red | #C71585 | (199, 21, 133) | |
| Pale Violet Red | #DB7093 | (219, 112, 147) | |
| Deep Pink | #FF1493 | (255, 20, 147) | |
| Hot Pink | #FF69B4 | (255, 105, 180) | |
| Light Pink | #FFB6C1 | (255, 182, 193) | |
| Pink | #FFC0CB | (255, 192, 203) | |
| Antique White | #FAEBD7 | (250, 235, 215) | |
| Beige | #F5F5DC | (245, 245, 220) | |
| Bisque | #FFE4C4 | (255, 228, 196) | |
| Blanched Almond | #FFEBCD | (255, 235, 205) | |
| Wheat | #F5DEB3 | (245, 222, 179) | |
| Corn Silk | #FFF8DC | (255, 248, 220) | |
| Lemon Chiffon | #FFFACD | (255, 250, 205) | |
| Light Golden Rod Yellow | #FAFAD2 | (250, 250, 210) | |
| Light Yellow | #FFFFE0 | (255, 255, 224) | |
| Saddle Brown | #8B4513 | (139, 69, 19) | |
| Sienna | #A0522D | (160, 82, 45) | |
| Chocolate | #D2691E | (210, 105, 30) | |
| Peru | #CD853F | (205, 133, 63) | |
| Sandy Brown | #F4A460 | (244, 164, 96) | |
| Burly Wood | #DEB887 | (222, 184, 135) | |
| Tan | #D2B48C | (210, 180, 140) | |
| Rosy Brown | #BC8F8F | (188, 143, 143) | |
| Moccasin | #FFE4B5 | (255, 228, 181) | |
| Navajo White | #FFDEAD | (255, 222, 173) | |
| Peach Puff | #FFDAB9 | (255, 218, 185) | |
| Misty Rose | #FFE4E1 | (255, 228, 225) | |
| Lavender Blush | #FFF0F5 | (255, 240, 245) | |
| Linen | #FAF0E6 | (250, 240, 230) | |
| Old Lace | #FDF5E6 | (253, 245, 230) | |
| Papaya Whip | #FFEFD5 | (255, 239, 213) | |
| Sea Shell | #FFF5EE | (255, 245, 238) | |
| Mint Cream | #F5FFFA | (245, 255, 250) | |
| Slate Gray | #708090 | (112, 128, 144) | |
| Light Slate Gray | #778899 | (119, 136, 153) | |
| Light Steel Blue | #B0C4DE | (176, 196, 222) | |
| Lavender | #E6E6FA | (230, 230, 250) | |
| Floral White | #FFFAF0 | (255, 250, 240) | |
| Alice Blue | #F0F8FF | (240, 248, 255) | |
| Ghost White | #F8F8FF | (248, 248, 255) | |
| Honeydew | #F0FFF0 | (240, 255, 240) | |
| Ivory | #FFFFF0 | (255, 255, 240) | |
| Azure | #F0FFFF | (240, 255, 255) | |
| Snow | #FFFAFA | (255, 250, 250) | |
| Black | #000000 | (0, 0, 0) | |
| Dim Gray | #696969 | (105, 105, 105) | |
| Gray | #808080 | (128, 128, 128) | |
| Dark Gray | #A9A9A9 | (169, 169, 169) | |
| Silver | #C0C0C0 | (192, 192, 192) | |
| Light Gray | #D3D3D3 | (211, 211, 211) | |
| Gainsboro | #DCDCDC | (220, 220, 220) | |
| White Smoke | #F5F5F5 | (245, 245, 245) | |
| White | #FFFFFF | (255, 255, 255) |