Online Reference

 

 

PROGRAMMING
RAPID TABLES

 

    Home > Programming > RGB Color Codes

RGB Color Codes

RGB color space, RGB color codes interactive chart, RGB color format, RGB color table

RGB Color Space

RGB color space or RGB color system, constructs all the colors from the combination of the Red, Green and Blue colors.

The red, green and blue use 8 bits each, which have integer values from 0 to 255. This makes 256*256*256=65536 possible colors.

Each pixel in the LCD monitor displays colors this way, by combination of red, green and blue LEDs (light emitting diodes).

When the red pixel is set to 0, the LED is turned off. When the red pixel is set to 255, the LED is turned fully on. Any value between them sets the LED to partial light emission.

RGB Color Codes Interactive Chart

Click on color it to get hex color code:

             
             
             
             
             
             
             
             
             

 

 

 

RGB Color Format

RGB code has 24 bits format:

RED[7:0]GREEN[7:0]BLUE[7:0]

23

      1615      87      

0

RGB Color Code Calculation

RGB = (R*65536)+(G*256)+B , (when R is RED, G is GREEN and B is BLUE)

Examples:

White RGB Color

White RGB code = 255*65536+255*256+255 = #FFFFFF

Blue RGB Color

Blue RGB code = 0*65536+0*256+255 = #0000FF

Red RGB Color

Red RGB code = 255*65536+0*256+0 = #FF0000

Green RGB Color

Green RGB code = 0*65536+255*256+0 = #00FF00

Gray RGB Color

Gray RGB code = 128*65536+128*256+128 = #808080

Yellow RGB Color

Yellow RGB code = 255*65536+255*256+0 = #FFFF00

RGB Color Table

ColorNameHex Code

#RRGGBB

Decimal Code

R,G,B

 Red#FF0000255,0,0
 Green (lime)#00FF000,255,0
 Blue#0000FF0,0,255
 Black#0000000,0,0
 White#FFFFFF255,255,255
 Yellow#FFFF00255,255,0
 Cyan (aqua)#00FFFF0,255,255
 Magenta (fuchsia)#FF00FF255,0,255
 Dark Gray#40404064,64,64
 Gray / Grey#808080128,128,128
 Silver#C0C0C0192,192,192
 Maroon#800000128,0,0
 Rose#FF99CC255,153,204
 Brown#993300153,51,0
 Orange#FF6600255,102,0
 Light Orange#FF9900255,153,0
 Gold#FFD700255,215,0
 Tan#FFCC99255,204,153
 Dark Olive#33330051,51,0
 Olive#808000128,128,0
 Yellow Green#99CC00153,204,0
 Light Yellow#FFFF99255,255,153
 Dark Green#0033000,51,0
 Sea Green#33996651,153,102
 Dark Green#0080000,128,0
 Light Green#CCFFCC204,255,204
 Dark Teal#0033660,51,102
 Teal#00,80,800,128,128
 Aqua#33CCCC51,204,204
 Light Turquoise#CCFFFF204,255,255
 Navy#0000800,0,128
 Light Blue#3366FF51,102,255
 Sky Blue#00CCFF0,204,255
 Pale Blue#99CCFF153,204,255
 Indigo#33339951,51,153
 Blue Gray#666699102,102,153
 Purple#800080128,0,128
 Plum#993366153,51,102
 Lavender#CC99FF204,153,255

 


See also

© 2006-2008 RapidTables.com