site/assets/css/style.css
nyx 16be79ef0a Light mode
Dark mode is still default

Signed-off-by: nyx <me@everypizza.im>
2025-02-15 11:07:52 -06:00

20 lines
314 B
CSS

body {
max-width: 1000px;
margin: 2em auto;
background-color: black;
color: white;
font-family: Arial, sans-serif
}
@media (prefers-color-scheme: light) {
body {
background-color: white;
color: black
}
.logo {
filter: invert(1)
}
}
a {color: #05d5ff}