dark theme css support

This commit is contained in:
Yann Esposito (Yogsototh) 2021-05-06 09:13:13 +02:00
parent 03db1aaea7
commit 3a6587a3ef
Signed by untrusted user who does not match committer: yogsototh
GPG Key ID: 7B19A4C650D59646
1 changed files with 6 additions and 7 deletions

View File

@ -90,11 +90,6 @@ figcaption { text-align: right; font-family: italic; }
--hl: var(--rfg);
}
pre {
border-color: var(--b1);
background: var(--b2);
}
img { filter: brightness(0.8) sepia(100%) hue-rotate(185deg) saturate(0.5); }
img:hover { filter: none; }
@ -155,8 +150,12 @@ blockquote { margin: 0 1em;
.st { color:var(--g); }
.co { color:var(--fg0); }
.pubDate { font-size: .7em; color: var(--b1); }
.tag { font-size: .7em; background-color: var(--b2); }
.pubDate { font-size: .7em; color: var(--fg); }
.tag { font-size: .7em; background-color: var(--rbg); }
pre { border-color: var(--fg);
background: var(--rbg);
}
.todo,.done { background: var(--r); color: #FFF; font-weight: bold; font-size: .66em; padding: .2em;}
.done { background: var(--g); }