mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 00:12:09 +00:00
fc8d0caeea
This is a good use of my time.
31 lines
360 B
CSS
31 lines
360 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(1);
|
|
filter: invert(1);
|
|
}
|
|
|
|
a {
|
|
color: #4af;
|
|
}
|
|
|
|
a:visited {
|
|
color: #d7f;
|
|
}
|
|
|
|
a:active {
|
|
color: #f33;
|
|
}
|
|
|
|
blockquote,
|
|
code,
|
|
hr,
|
|
pre {
|
|
border-color: #333;
|
|
}
|
|
}
|