![]() |
VOOZH | about |
HEX color codes are a fundamental aspect of web design, allowing developers to specify colors in HTML and CSS with precision. These codes consist of a hash symbol (#) followed by six characters, each representing the intensity of the primary colors: red, green, and blue (RGB) in hexadecimal format.
The format for a HEX color code is #RRGGBB , where:
Each pair of characters in the HEX color code ranges from 00 to FF. A value of 00 represents the lowest intensity of the color, while FF represents the highest intensity. By combining different intensities of red, green, and blue, a wide spectrum of colors can be created. In fact, there are 16,777,216 possible color combinations with HEX codes.
A HEX color code is a hexadecimal way to represent colors in web design and other digital applications. It starts with a hash symbol (#) followed by six characters, each pair representing the intensity of red, green, and blue colors respectively. This format allows for a wide range of colors to be precisely defined and used in HTML and CSS.
The structure of a HEX color code is #RRGGBB, where:
For example:
Note:
- The white color is a mixture of the three primary colors at full intensity representing the Hex color code #FFFFFF
- The black color is a mixture of the three primary colors at the lowest intensity representing the color code #000000
Here is a list of some commonly used HTML Hexadecimal color codes:
| COLOR NAME | COLOR | HEX COLOR CODE |
|---|---|---|
| SILVER | #C0C0C0 | |
| GRAY | #808080 | |
| MAROON | #800000 | |
| OLIVE | #808000 | |
| LIME | #00FF00 | |
| AQUA | #00FFFF | |
| TEAL | #008080 | |
| NAVY | #000080 | |
| FUCHSIA | #FF00FF | |
| PURPLE | #800080 | |
| INDIANRED | #CD5C5C | |
| LIGHTCORAL | #F08080 | |
| SALMON | #FA8072 | |
| DARKSALMON | #E9967A | |
| LIGHTSALMON | #FFA07A |
COLOR NAME | COLOR | HEX COLOR CODE |
|---|---|---|
lightsalmon | #FFA07A | |
salmon | #FA8072 | |
darksalmon | #E9967A | |
lightcoral | #F08080 | |
indianred | #CD5C5C | |
crimson | #DC143C | |
firebrick | #B22222 | |
red | #FF0000 | |
darkred | #8B0000 |
COLOR NAME | COLOR | HEX COLOR CODE |
|---|---|---|
coral | #FF7F50 | |
tomato | #FF6347 | |
orangered | #FF4500 | |
gold | #FFD700 | |
orange | #FFA500 | |
darkorange | #FF8C00 |
COLOR NAME | COLOR | HEX COLOR CODE |
|---|---|---|
lightyellow | #FFFFE0 | |
lemonchiffon | #FFFACD | |
papayawhip | #FFEFD5 | |
moccasin | #FFE4B5 | |
peachpuff | #FFDAB9 | |
palegoldenrod | #EEE8AA | |
khaki | #F0E68C | |
darkkhaki | #BDB76B | |
yellow | #FFFF00 |
COLOR NAME | COLOR | HEX COLOR CODE |
|---|---|---|
lawngreen | #7CFC00 | |
limegreen | #32CD32 | |
lime | #00FF00 | |
forestgreen | #228B22 | |
darkgreen | #006400 | |
springgreen | #00FF7F | |
mediumspringgreen | #00FA9A | |
palegreen | #98FB98 | |
seagreen | #2E8B57 |
COLOR NAME | COLOR | HEX COLOR CODE |
|---|---|---|
powderblue | #B0E0E6 | |
lightskyblue | #87CEFA | |
skyblue | #87CEEB | |
deepskyblue | #00BFFF | |
dodgerblue | #1E90FF | |
cornflowerblue | #6495ED | |
steelblue | #4682B4 | |
royalblue | #4169E1 | |
mediumblue | #0000CD |
| Color Name | Color | HTML Color Code |
|---|---|---|
| snow | #FFFAFA | |
| honeydew | #F0FFF0 | |
| azure | #F0FFFF | |
| ghostwhite | #F8F8FF | |
| whitesmoke | #F5F5F5 | |
| mintcream | #F5FFFA | |
| ivory | #FFFFF0 | |
| floralwhite | #FFFAF0 | |
| antiquewhite | #FAEBD7 |
| Color Name | Color | HTML Color Code |
|---|---|---|
| blanchedalmond | #FFEBCD | |
| bisque | #FFE4C4 | |
| wheat | #F5DEB3 | |
| burlywood | #DEB887 | |
| tan | #D2B48C | |
| rosybrown | #BC8F8F | |
| sandybrown | #F4A460 | |
| chocolate | #D2691E | |
| saddlebrown | #8B4513 | |
| sienna | #A0522D | |
| brown | #A52A2A |
HTML is the foundation of webpages, is used for webpage development by structuring websites and web apps. You can learn HTML from the ground up by following this HTML Tutorial and HTML Examples .
Output:
👁 ImageOutput:
👁 Image#FF0000 - This HTML color code shows just red and no green and no blue.
#00FF00 - This HTML color code shows just green and no red and blue.
#0000FF - This HTML color code shows just blue and no red and green.
#FFFF00 - This HTML color code is a mixture of red and green colors defined as yellow.
#CCEEFF - This HTML color code is a mixture of more green and maximum blue provides color like the sky.
Output:
👁 Image