CSS Properties

Text Color

Color

Color property set the color of the text. We can set this property to either a color name or color value.

  • Color name - red,green,blue etc.
  • Color value -
    Hex Value - #F0E68C
    RGB Value - rgb(240,230,140)

Example:

h1{
color : red;
}
Cristle Academy

Compiler