body {
background-color: var(--background);
background-image: radial-gradient(var(--accent) .75px, transparent .75px);
background-size: 15px 15px;
}
See Pen KKJvraL
<html>
<head>
<title>CSS Grid layout</title>
</head>
<body>
content
</body>
</html>
body {
--background: lightyellow;
--accent: green;
}
body {
background-color: var(--background);
background-image: radial-gradient(var(--accent) .75px, transparent .75px);
background-size: 15px 15px;
}