Color Formulation

The default colors are black text on a white background (like this). You add color to your document, using the style attribute with the properties color for text, and background-color for background. See the section on Style. Here we discuss only how to formulate colors.

Named Colors

A few colors can be referred to by name. Those names which are safe to use with all browsers, are shown in the next table. Other colors are more reliably described using numbers.

The 8 safe named colors.

red
lime
blue
yellow
fuchsia
magenta
aqua
cyan
white
black

How to Formulate Colors

Colors are produced by the use of differing quantities of red, green (or lime), and blue light. The amount of light is described by a number ranging from 0 to 255, or in hexadecimal, 0 to ff. Thus the color black, which corresponds to no light can be described by the numbers 0,0,0. The property:value combination is:

color:rgb(0,0,0)
or in hexadecimal:
color:#000000
Two digits must be used for each hexadecimal number, since the browser breaks the combined number down into three parts. The 3 parts determine determine how much red, lime, and blue light the browser will use.

Of interest are the shades of gray which are produced by using equal amounts of each color of light.

Shades of Gray Using Hexadecimal Numbers
000000
333333
666666
999999
cccccc
ffffff

Browser Safe Colors

Browser safe colors are the 216 colors formed by using the hexadecimal numbers 00, 33, 66, 99, cc, and ff to form colors. These are shown in the next set of tables. Other color numbers can be used, but they may be rounded by some browsers, or dithered by others.

The 216 Browser Safe Colors

Red = 00

Blue = 00 Blue = 33 Blue = 66 Blue = 99 Blue = cc Blue = ff
Lime = 000000000000330000660000990000cc0000ff
Lime = 330033000033330033660033990033cc0033ff
Lime = 660066000066330066660066990066cc0066ff
Lime = 990099000099330099660099990099cc0099ff
Lime = cc00cc0000cc3300cc6600cc9900cccc00ccff
Lime = ff00ff0000ff3300ff6600ff9900ffcc00ffff

Red = 33
Blue = 00 Blue = 33 Blue = 66 Blue = 99 Blue = cc Blue = ff
Lime = 003300003300333300663300993300cc3300ff
Lime = 333333003333333333663333993333cc3333ff
Lime = 663366003366333366663366993366cc3366ff
Lime = 993399003399333399663399993399cc3399ff
Lime = cc33cc0033cc3333cc6633cc9933cccc33ccff
Lime = ff33ff0033ff3333ff6633ff9933ffcc33ffff

Red = 66
Blue = 00 Blue = 33 Blue = 66 Blue = 99 Blue = cc Blue = ff
Lime = 006600006600336600666600996600cc6600ff
Lime = 336633006633336633666633996633cc6633ff
Lime = 666666006666336666666666996666cc6666ff
Lime = 996699006699336699666699996699cc6699ff
Lime = cc66cc0066cc3366cc6666cc9966cccc66ccff
Lime = ff66ff0066ff3366ff6666ff9966ffcc66ffff

Red = 99
Blue = 00 Blue = 33 Blue = 66 Blue = 99 Blue = cc Blue = ff
Lime = 009900009900339900669900999900cc9900ff
Lime = 339933009933339933669933999933cc9933ff
Lime = 669966009966339966669966999966cc9966ff
Lime = 999999009999339999669999999999cc9999ff
Lime = cc99cc0099cc3399cc6699cc9999cccc99ccff
Lime = ff99ff0099ff3399ff6699ff9999ffcc99ffff

Red = cc
Blue = 00 Blue = 33 Blue = 66 Blue = 99 Blue = cc Blue = ff
Lime = 00cc0000cc0033cc0066cc0099cc00cccc00ff
Lime = 33cc3300cc3333cc3366cc3399cc33cccc33ff
Lime = 66cc6600cc6633cc6666cc6699cc66cccc66ff
Lime = 99cc9900cc9933cc9966cc9999cc99cccc99ff
Lime = cccccc00cccc33cccc66cccc99ccccccccccff
Lime = ffccff00ccff33ccff66ccff99ccffccccffff

Red = ff
Blue = 00 Blue = 33 Blue = 66 Blue = 99 Blue = cc Blue = ff
Lime = 00ff0000ff0033ff0066ff0099ff00ccff00ff
Lime = 33ff3300ff3333ff3366ff3399ff33ccff33ff
Lime = 66ff6600ff6633ff6666ff6699ff66ccff66ff
Lime = 99ff9900ff9933ff9966ff9999ff99ccff99ff
Lime = ccffcc00ffcc33ffcc66ffcc99ffccccffccff
Lime = ffffff00ffff33ffff66ffff99ffffccffffff