Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

Colors HEX


Hex Calculator


 
rgb(255, 0, 0)#000000
hsl(0, 0%, 0%)


R:
G:
B:

Hexadecimal Colors

Hexadecimal color values are also supported in all browsers.

A hexadecimal color is specified with: #RRGGBB.

RR (red), GG (green) and BB (blue) are hexadecimal integers between 00 and FF specifying the intensity of the color.

For example, #0000FF is displayed as blue, because the blue component is set to its highest value (FF) and the others are set to 00.


Try it Yourself

Hexadecimal color values are supported in all browsers.

Example

<style>
div {
    background-color: #00bfff;
    color: #ffffff;
}
</style>

Try It Yourself »