The CSS background properties are used to add background effects for elements.
CSS background-color
The background-color
property specifies the background color of an element.
The background color of a page is set like this:
body {
background-color: lightblue;
}