Get the color scheme all fancy

This commit is contained in:
Nathan McCarty 2025-02-04 03:32:23 -05:00
parent 7df154596b
commit 37238e864b

View file

@ -1,5 +1,7 @@
:root {
color-scheme: light dark;
color: light-dark(#474747, #b9b9b9);
background-color: light-dark(#ebebeb, #252525);
}
body {
@ -9,5 +11,16 @@ body {
}
.post-body {
max-width: 80%;
width: 66%;
display: block;
padding: 1rem;
background-color: light-dark(#ffffff, #181818);
}
.post-body > h1 {
text-align: center;
}
.post-body > p {
text-align: justify;
}