Invert colors when dark mode is preferred

This commit is contained in:
Dave Gallant
2021-09-26 15:09:16 -04:00
parent 015b7cd71a
commit f1f59e73a7

View File

@@ -1,3 +1,13 @@
@media (prefers-color-scheme: dark) {
html {
filter: invert(80%);
}
html img {
filter: invert(100%);
}
}
.container{
max-width: 1200px;
}