HTML Color Chart And HTML Color Picker

HTML Color Code

WhatAboutHTML has 2 free HTML color tools to find the best HTML color codes for your website: HTML Color Chart and HTML Color Picker.

HTML Color Chart

HTML color chart is great for finding the color codes for basic colors. Click on any of the color square below to get the corresponding HTML color code.

HTML Color Picker

You can get the desired HTML color code by clicking and dragging your cursor inside the picker area to highlight a color on the right. You can also input RGB or HSV to search for colors.

How to use HTML color codes

You can change the color of HTML elements with HTML color code. You can change the background color of a HTML element by using background and you can also change the color of a HTML element with color.

[html] <body style="background:place color code here"> <p style="color:place color code here"> [/html]

HTML Code Format

Each HTML code contains symbol “#” and 6 letters or numbers. These numbers are in hexadecimal numeral system. For example “FF” in hexadecimal represents number 255 in Decimal.

Meaning of HTML Color Code Symbols

Meaning of symbols: The first two symbols in HTML color code represents the intensity of red color. 00 is the least and FF is the most intense. The third and fourth represents intensity of green and fifth and sixth represents the intensity of blue. So with combining the intensity of red, green and blue we can mix almost any color that our heart desire.