feat: add a pure black theme

This commit is contained in:
Bnyro 2023-10-17 11:04:54 +02:00
parent d1ff3d681b
commit a3bd213a56
3 changed files with 11 additions and 3 deletions

View file

@ -22,7 +22,8 @@
}
:root,
body[data-theme='dark'] {
body[data-theme='dark'],
body[date-theme='black'] {
--color-foreground: var(--vt-c-blue);
--color-background: var(--vt-c-black);
--color-background-soft: var(--vt-c-black-soft);
@ -39,6 +40,11 @@ body[data-theme='dark'] {
--color-text: var(--vt-c-text-dark-2);
}
body[data-theme='black'] {
--color-background: #000;
--color-background-mute: #181818;
}
body[data-theme^='light'] {
--color-foreground: cornflowerblue;
--color-background: var(--vt-c-white);