mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 08:12:11 +00:00
00da18b36e
Should now be full wcag AA with some AAA.
38 lines
655 B
CSS
38 lines
655 B
CSS
@media (prefers-color-scheme: dark) {
|
|
/* I've been told that pure white on black is a bit harsh */
|
|
html {
|
|
color: #eee;
|
|
}
|
|
|
|
html,
|
|
.skip {
|
|
/* "background" is short for a bunch of unnecessary CSS rules
|
|
* background-color is all I need */
|
|
background-color: #0e0e0e;
|
|
}
|
|
|
|
/* Only color <a> if it's a link; if href is empty, let it be. */
|
|
a:link {
|
|
color: #fe8;
|
|
}
|
|
|
|
a:visited {
|
|
color: #edc;
|
|
}
|
|
|
|
a:active {
|
|
color: #c80;
|
|
}
|
|
|
|
:not(pre) > code {
|
|
border-color: #555;
|
|
}
|
|
|
|
/* stylelint-disable -- hasn't heard of "prefers-contrast" yet */
|
|
@media (prefers-contrast: less) {
|
|
/* stylelint-enable */
|
|
html {
|
|
background-color: #222;
|
|
}
|
|
}
|
|
}
|