2020-11-03 15:46:20 -08:00
|
|
|
@media (prefers-color-scheme: dark) {
|
2020-12-12 21:05:25 -08:00
|
|
|
html {
|
2021-06-26 19:35:49 -07:00
|
|
|
/* "background" is short for a bunch of unnecessary CSS rules
|
2021-08-30 15:08:59 -07:00
|
|
|
* background-color is all I need
|
|
|
|
* I've been told that pure white on black is a bit harsh */
|
2022-04-02 23:54:39 -07:00
|
|
|
background-color: #0e0e0e;
|
|
|
|
color: #eee;
|
2020-11-23 15:47:27 -08:00
|
|
|
}
|
2020-11-03 15:46:20 -08:00
|
|
|
|
2020-11-25 22:19:52 -08:00
|
|
|
a {
|
2022-04-06 17:50:11 -07:00
|
|
|
color: #ffea77;
|
2020-11-23 15:47:27 -08:00
|
|
|
}
|
2020-11-03 15:46:20 -08:00
|
|
|
|
2020-12-15 23:18:18 -08:00
|
|
|
a:visited {
|
2021-06-03 01:24:04 -07:00
|
|
|
color: #ddc;
|
2020-12-15 23:18:18 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
a:active {
|
2021-06-03 01:24:04 -07:00
|
|
|
color: #c80;
|
2020-11-23 15:47:27 -08:00
|
|
|
}
|
2020-12-12 21:05:25 -08:00
|
|
|
|
2022-04-10 20:41:35 -07:00
|
|
|
pre,
|
|
|
|
:not(pre) > code {
|
2022-04-02 23:54:39 -07:00
|
|
|
border-color: #444;
|
2020-11-23 15:47:27 -08:00
|
|
|
}
|
2022-03-30 17:44:39 -07:00
|
|
|
|
|
|
|
/* stylelint-disable -- hasn't heard of "prefers-contrast" yet */
|
|
|
|
@media (prefers-contrast: less) {
|
|
|
|
/* stylelint-enable */
|
|
|
|
html {
|
|
|
|
background-color: #222;
|
|
|
|
}
|
|
|
|
}
|
2020-11-03 15:46:20 -08:00
|
|
|
}
|