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:
Tomato, Orange, DodgerBlue, MediumSeaGreen, Gray, SlateBlue, Violet, LightGray.
Background Color
You can set the background color for HTML elements:
<hBest Answertyle="background-color:DodgerBlue;">Hello World</h1> <p style="background-color:Tomato;">Lorem ipsum...</p>
Text Color
You can set the color of text:
<hBest Answertyle="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:
<hBest Answertyle="border:2px solid Tomato;">Hello World</h1> <hBest Answertyle="border:2px solid DodgerBlue;">Hello World</h1> <hBest Answertyle="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:
<hBest Answertyle="background-color:rgb(255, 99, 71);">...</h1> <hBest Answertyle="background-color:#ff6347;">...</h1> <hBest Answertyle="background-color:hsl(9, 100%, 64%);">...</h1> <hBest Answertyle="background-color:rgba(255, 99, 71, 0.5);">...</h1> <hBest Answertyle="background-color:hsla(9, 100%, 64%, 0.5);">...</h1>