 | CLUTs -- The Lotus and Web-safe palettes are technically not "palettes" but color look-up tables (CLUTs) that map the logical color numbers stored for each pixel of the image to the actual colors, represented as RGB triplets, that are displayed on a computer monitor. RGB values express the red, green, and blue components of a color as numbers from 0 to 255, which allows for 16,777,216 colors.
RGB triplets are slightly different from the more familiar hexadecimal triplets used in HTML code. HTML color values for elements such as page background and links are expressed as triplets of hexadecimal (base 16) numbers from 0 to FF -- or 256 values. Black is 0,0,0 in RGB and 00,00,00 in hex code. White is 255,255,255 RGB and FF,FF,FF hex. Red is 255,0,0 or FF,00,00, and so on. |