drip: Mejorar manejo de colores

This commit is contained in:
Cat /dev/Nulo 2022-03-10 09:42:25 -03:00
parent 868b3039c5
commit 44b896ce70
1 changed files with 13 additions and 5 deletions

View File

@ -1,4 +1,13 @@
:root {
--background: white;
--foreground: #111;
}
body {
background: white;
background: var(--background);
color: #111;
color: var(--foreground);
font-family: sans-serif;
max-width: 45rem;
margin: 0;
@ -32,6 +41,8 @@ pre {
blockquote {
border-left: solid 3px;
border-color: #111;
border-color: var(--foreground);
margin: auto 0.5em;
padding-left: 1em;
}
@ -47,8 +58,8 @@ li {
@media (prefers-color-scheme: dark) {
body {
background: black;
color: #eee;
--background: black;
--foreground: #eee;
}
abbr {
color: lightgray;
@ -59,7 +70,4 @@ li {
a:visited {
color: #ff9;
}
ul {
background: rgba(255, 0, 0, 0.2);
}
}