HTML Colors
HTML colors are specified with predefined color names, or with RGB, HEX, HSL, RGBA, or HSLA values.
Color Names
In HTML, a color can be specified by using a color name:
Background Color
You can set the background color for HTML elements:
EXAMPLE:
<h1 style="background-color:DodgerBlue;">Hello World</h1>
<p style="background-color:Tomato;">Lorem ipsum...</p>
Text Color
You can set the color of text:
EXAMPLE:
<h1 style="color:Tomato;">Hello World</h1>
<p style="color:DodgerBlue;">Lorem ipsum...</p>
<p style="color:MediumSeaGreen;">Ut wisi enim...</p>
Border Color
You can set the color of borders:
EXAMPLE:
<h1 style="border:2px solid Tomato;">Hello World</h1>
<h1 style="border:2px solid DodgerBlue;">Hello World</h1>
<h1 style="border:2px solid Violet;">Hello World</h1>
Color Values
In HTML, colors can also be specified using RGB values, HEX values, HSL values, RGBA values, and HSLA values.
The following three <div> elements have their background color set with RGB, HEX, and HSL values:
The following two <div> elements have their background color set with RGBA and HSLA values, which adds an Alpha channel to the color (here we have 50% transparancy):
EXAMPLE:
<h1 style="background-color:rgb(255, 99, 71);">...</h1>
<h1 style="background-color:#ff6347;">...</h1>
<h1 style="background-color:hsl(9, 100%, 64%);">...</h1>
<h1 style="background-color:rgba(255, 99, 71, 0.5);">...</h1>
<h1 style="background-color:hsla(9, 100%, 64%, 0.5);">...</h1>
![31.PNG](https://static.wixstatic.com/media/0aad0d_5b58ee6093ca4fc385fbbad2e98d6901~mv2.png/v1/fill/w_757,h_150,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/31_PNG.png)
![32.PNG](https://static.wixstatic.com/media/0aad0d_b36a93482c0c4a6293e213e8e693af42~mv2.png/v1/fill/w_705,h_160,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/32_PNG.png)
![33.PNG](https://static.wixstatic.com/media/0aad0d_4ad04f9ffc12455895e9a0d3f7af642e~mv2.png/v1/fill/w_727,h_110,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/33_PNG.png)