How to apply color code to my web page ?
1) Create a file : page.html (with a text editor)
2) Copy and paste code

into the file.
Examples of color integration with hexadecimal values.
<font color="#864313">a text</font>
a text
<div style="color:#864313;width:400px;height:50px;border:2px solid #EE4466;">a text</div>
a text
<div style="background-color:#339999;width:400px;height:50px;"></div>
<html>
<head>
<style type="text/css"> .ex{ color:#864313;} </style>
</head>
<body>
<font class="ex"> a text </font>
</body>
</html>
a text
Examples of color integration with rgb values.
<div style="background-color:rgb(82,54,20);color:rgb(76,126,128);width:400px;height:50px;">a text</div>
a text
<html>
<head>
<style type="text/css"> .ex{ color:rgb(76,126,128);} </style>
</head>
<body>
<font class="ex"> a text </font>
</body>
</html>
a text
Examples of color integration with a color name ex : fuchsia.
<div style="background-color:fuchsia;color:#FFFFFF;width:400px;height:50px;">a text</div>
a text
<html>
<head>
<style type="text/css"> .ex{ color:fuchsia;} </style>
</head>
<body>
<font class="ex"> a text </font>
</body>
</html>
a text
Others tips and informations
What means hex ?
hex = Hexadecimal (base 16)
What means rgb ?
rgb = red green blue
What means HSL ?
H = Hue
S = Saturation
L = Lightness
Numbers are rounded to 2 decimal places...
For variations we display Hue/Saturation/Lightness x 100 to display %.
So if by example we consider a color with a Lightness of 0.20 we will display 20% into variations list.
Variation legend and details
Just want to see a color list with color names ?
Here is the
Color list
Like our color tool and want to support this website ?
You can put this code to your website if you want :
<a href="http://coloreminder.com/" title="Color tool for Web designer">Color tool</a>