1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2024-09-20 04:12:09 +00:00
seirdy.one/assets/css/dark.css

31 lines
353 B
CSS
Raw Normal View History

@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;
}
2020-12-12 10:42:45 +00:00
pre,
code,
hr {
border-color: #333;
}
}