Color Theory: Lesson 2: Additive Color / RGBby Sarah Sammis
Web pages use and RGB color scheme converted to a hexidecimal (base 16) system to render colors. The color scheme starts with a pound sign and is then followed by six numbers. The first two are the Red Channel, the second two are the Green Channel and last two are the Blue Channel. "Web safe" colors are done as pairs of letters in each channel, selecting from these values: 0, 3, 6, 9, C, F. 00 is the lowest value per channel, so that #000000 makes the color black. FF is the heighest value so that #FF0000 is red, #00FF00 is green, #0000FF is blue and #FFFFFF is white. The color gray is made when all three channels have the same value, assuming that value is between 00 and FF. If you have a graphics program such as Photoshop or Freehand, you can do your color selection there and have the program tell you what the values are. Most WSYWYG HTML editors will also have the websafe pallet on hand. For more information regarding web safe colors, I recommend these links:
|