Color Properties

Set the text color for different elements

Color Names

I'm red text!

p { color: red; }

I'm blue text!

p { color: blue; }

I'm green text!

p { color: #00FF00; }

Hex Code

I'm maroon text!

p { color: #800000; }

I'm orange text!

p { color: #FFA500; }

I'm turquoise text!

p { color: #40E0D0; }

RGB Values

I'm purple text!

p { color: rgb(128,0,128); }

I'm pink text!

p { color: rgb(255,192,203); }

I'm gold text!

p { color: rgb(166,124,0); }