Фон Сетка для всей страницы

Основной фон всей страницы в виде диагональной сетки на CSS

CSS

body{
  color: white;
  /*background: repeating-linear-gradient(30deg, #606dbc, #606dbc 15px, #465298 15px, #465298 30px);
  background-size: 60px 35px;
  background-color: #fff;*/
  background-image: linear-gradient(45deg, #fff 25%, transparent 25%, transparent 50%, #fff 50%, #fff 75%, transparent 75%, #000);
  background-size: 100px 100px;
}