The css property is utilized to set the shade of the content. The shading is indicated by:
a color name - like "red"
a HEX worth - like "#ff0000"
a RGB esteem - like "rgb(255,0,0)"
for instance:
body {
background color: lightgrey;
color: blue;
}
h1 {
background color: dark;
color: white;
}