SyntaxStudy
Sign Up

color

property

Sets the foreground color of text content and text decorations.

Syntax

color: value;

Example

css
.named  { color: red; }
.hex    { color: #e74c3c; }
.rgb    { color: rgb(231, 76, 60); }
.rgba   { color: rgba(231, 76, 60, 0.8); }
.hsl    { color: hsl(6, 78%, 57%); }
.hsla   { color: hsla(6, 78%, 57%, 0.5); }

/* CSS variable */
:root { --primary: #3498db; }
.link { color: var(--primary); }