HTML colors are specified with predefined color names, or with RGB, HEX, HSL, RGBA, or HSLA values.
Live Demo & Try it yourself!
Output
HTML supports 140 standard color names
Colors | Colors
HTML colors are specified with predefined color names, or with RGB, HEX, HSL, RGBA, or HSLA values.
<!DOCTYPE html>
<html>
<head>
<title>Colors</title>
</head>
<body>
<h1 style="background-color:MediumSeaGreen;">MediumSeaGreen</h1>
<h1 style="background-color:Gray;">Gray</h1>
<h1 style="background-color:SlateBlue;">SlateBlue</h1>
<h1 style="background-color:Violet;">Violet</h1>
<h1 style="background-color:LightGray;">LightGray</h1>
<h1 style="background-color:Tomato;">Tomato</h1>
<h1 style="background-color:Orange;">Orange</h1>
<h1 style="background-color:DodgerBlue;">DodgerBlue</h1>
</body>
</html>
HTML supports 140 standard color names