Menu
Fundamentals

CSS Colors

Explore ways to specify colors: Names, RGB, HEX, HSL.

1Color Formats

You can specify colors using keywords, hex codes, or functions like rgb() and hsl().

Example Code
h1 { color: Tomato; }
h2 { color: #ff6347; }
h3 { color: rgb(255, 99, 71); }

Finished reading?

Mark this topic as complete to track progress.