frontend: initial dark mode for filemananger

This commit is contained in:
Johannes Zellner
2024-06-12 19:57:21 +02:00
parent 9f26608681
commit 7affc6e987
3 changed files with 11 additions and 3 deletions

View File

@@ -28,3 +28,11 @@ a:hover, a:focus {
#app {
height: 100%;
}
@media (prefers-color-scheme: dark) {
body {
background-color: black;
color: var(--pankow-color-light-dark);
}
}