added logos for light theme
All checks were successful
Copy Files to Samba Share dev / Copy Files (push) Successful in 24s

This commit is contained in:
2024-10-28 19:52:08 +01:00
parent 0ab7f77915
commit e3069e8eeb
10 changed files with 20 additions and 4 deletions

View File

@@ -1,9 +1,21 @@
body {
.only-on-dark {
display: none;
}
// dark mode
@media (prefers-color-scheme: dark) {
--text-color: rgb(222, 112, 108);
--background-color: rgb(41, 23, 44);
--accent-color: rgb(222, 112, 108);
.only-on-dark {
display: inline-block;
}
.only-on-light {
display: none;
}
}