18 lines
318 B
CSS
18 lines
318 B
CSS
:root {
|
|
--background: #fcfffe;
|
|
--foreground: #00180d;
|
|
--accent: #009953;
|
|
}
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--background: #030b07;
|
|
--foreground: #eceae5;
|
|
--accent: #0ae380;
|
|
}
|
|
}
|
|
|
|
/* override the left-align with justify as it looks better (i think) */
|
|
.post {
|
|
text-align: justify;
|
|
}
|