css change background color of page

CSS
/* Use the following code: */
html {background-color: #fefefe;} 
/* You can change the hexedecimal code to RGB, RGBA, name & more colors!*//* To apply color to background you have to use 'background-color' property and value of property is color name. */
html,body {
  background-color: blue;
}body {
  background-color: lightblue;
}
 
Source

Also in CSS: