Modern browsers support 140 named colors, shown below.
Use the names in your HTML and CSS by name, hex code,
or RGB value. Multi-word names such as DarkGray
are listed without spaces for use in
your HTML page or CSS stylesheet.
Use the examples below in your HTML page.
<h1 style="color:FireBrick">
FireBrick Title
</h1>
<p style="color:DarkGray">
DarkGray paragraph
</p>
Use the examples below in your CSS stylesheet.
h1 { color: FireBrick; }
p { color: DarkGray; }
Pick a hue from the filter above to see the colors.