mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 00:12:09 +00:00
950918b104
I've modified etch-custom so much that it doesn't need to be its own theme anymore.
30 lines
353 B
CSS
30 lines
353 B
CSS
@media (prefers-color-scheme: dark) {
|
|
html {
|
|
background: #000;
|
|
color: #fff;
|
|
}
|
|
|
|
/* IndieWeb u-photo should be distinct from the background */
|
|
.u-photo {
|
|
-webkit-filter: invert(100%);
|
|
filter: invert(100%);
|
|
}
|
|
|
|
a {
|
|
color: #4af;
|
|
}
|
|
|
|
a:visited {
|
|
color: #d7f;
|
|
}
|
|
|
|
a:active {
|
|
color: #f33;
|
|
}
|
|
|
|
pre,
|
|
code,
|
|
hr {
|
|
border-color: #333;
|
|
}
|
|
}
|