1
Fork 0

Implement dark theme

This commit is contained in:
Edgar P. Burkhart 2023-03-18 11:57:01 +01:00
parent 6e3846d60d
commit 2609507062
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
1 changed files with 21 additions and 0 deletions

View File

@ -23,6 +23,27 @@
--bl-lh: 2rem;
--bl-gap: 1rem;
}
@media (prefers-color-scheme: dark) {
:root {
--text: #ffffffde;
--text-00: #000000de;
--bg-00: #ffffff;
--bg-01: #131313;
--bg-02: #353535;
--bg-03: #575757;
}
body {
background: #000000;
}
.logo {
outline: 2px solid white;
outline-offset: -2px;
border-radius: 50%;
}
}
body {
font-family: "Inter var experimental", "Inter var", "Inter", sans-serif;