1
0
Fork 0
mirror of https://git.sr.ht/~seirdy/seirdy.one synced 2025-01-10 16:12:09 +00:00
seirdy.one/assets/css/dark.css
Rohan Kumar 404d7d8561
Improve dark-mode contrast a bit
- Lighten dark background some more
- Replace the black superscript backgrounds with different foreground
  colors.
2022-05-23 08:42:24 -07:00

46 lines
1 KiB
CSS

/* The dark stylesheet is the only place we set custom colors besides
* border colors for inline text. Make sure the perceptual contrast
* stays within the ideal APCA ranges, not lower and preferably not
* higher either. */
@media (prefers-color-scheme: dark) {
html {
/* Pure white on black causes halation.
* "background" is short for a bunch of unnecessary CSS rules
* background-color is all I need */
background-color: #141414;
/* Dimming the default text color is not the same as reducing screen
* brightness, since other colors in this stylesheet have brighter
* red and blue channels than the default text. */
color: #e9e9e9;
}
/* Only color <a> if it's a link; if href is empty, let it be. */
a:link {
color: #f1e7b2;
}
a:active {
color: #b93;
}
a:visited {
color: #ffd9ff;
}
/* Small text needs higher contrast. */
@media not (prefers-contrast: less) {
sup a:link {
color: #feb;
}
sup a:visited {
color: #ffe5ff;
}
}
@media (prefers-contrast: less) {
html {
background-color: #333;
}
}
}