Typography

color

Learn how to use the CSS color property.

CSS color

The color property sets the color for an HTML element.

Syntax

.element {
  color: red;
}

HTML Context Example

<div class="card">
  This is a styled element.
</div>

<style>
.card {
  color: red;
}
</style>

Notes

Experiment in the CSS playground to see how this affects layout and styling.