Text colours can be applied to text objects or their containers – note that “color” uses the American spelling.
Colours can be one of the 140 websafe colour names:
h1 {
color: darkblue;
}
Colours can be one of the 16million+ hexadecimal colours:
h1 {
color: #33CC22;
}
