Decouple primary color tint from bg color

Can be useful for websites with an image as a background :^)
This commit is contained in:
David Lapshin
2024-05-20 19:39:39 +03:00
parent 328c8ed0b3
commit 399be13097
2 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@ body {
body {
display: grid; // Put footer at the bottom for short pages, such as the 404
grid-template-rows: auto minmax(auto, 1fr) auto; // Header, stuff, footer
background: var(--bg-color);
background: var(--bg-color), var(--primary-color);
min-height: 100vh;
color: var(--fg-color);
line-height: 1.6;