CSS colors

CSS colors can be written with names, hexadecimal notation, or color functions.

What you will learn

Minimal example

.notice { color: #245; background-color: rgb(240 245 255); }

Use a named color for quick experiments and hexadecimal or functions when you need precise values.

Common mistakes