The names and hex codes of the 147 colors.
The names and hex codes of the standard colors.
The hex codes of the web safe colors.
The 12 color wheel and complementary colors.
Simulates the background and text color of the page.
Simulates the background, text, and scrollbar color.
Simulates the boxes background color.
Simulates the color of the ads units.
HTML color values
| Value | Type | Range |
|---|---|---|
| red | color name | - |
| #ff0000 | color hex (six-digit) | 00 - ff (#000000 - #ffffff) |
color="red"
color="#ff0000"
Color Names
The color is specified as a color name.
color="red"
color="green"
color="blue"
| red | lime | blue | white | black |
Color HEX (six-digit)
The color is specified as a six-digit hex code.
color="#ff0000"
color="#00ff00"
color="#0000ff"
This hex code is a character string of six digits preceded by a hash character (#).
#ffffff
The first and second digits : Sets the level of the Red color.
The third and fourth digits : Sets the level of the Green color.
The fifth and sixth digits : Sets the level of the Blue color.
The range of each level : 00 (lowest level) - ff (highest level)
[The character used : 0 1 2 3 4 5 6 7 8 9 a b c d e f ]
| #ff0000 | #00ff00 | #0000ff | #ffffff | #000000 |