colorDefine the color of your font. Value | Description | color | Hexadecimal - a pound sign (#) followed by at most 6 hex values(0-F).
RGB - individual values for Red, Green, and Blue.
color term - sets the color using names. i.e. red, orange, white, etc. |
Code:h4 { color: red; }
h5 { color: #9000A1; }
h6 { color: rgb(0, 220, 98); } Display:This is a red h4 header.
This is a hexadecimal #9000A1 h5 header.
This is an rgb(0, 220, 98) h6 header. |