Skip to content

Commit

Permalink
Merge pull request #46 from Daerckdev/master
Browse files Browse the repository at this point in the history
Add dark mode for WebUI
  • Loading branch information
j-hc committed Jun 20, 2024
2 parents d66cdff + a79fefe commit 4ac03a7
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion ksu-webui/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,22 @@
font-size: 14px;
width: 200px;
border: none;
}
}

@media (prefers-color-scheme: dark) {

body {
background-color: #121212;
color: #eee;
}

.card {
border-color: #2B2B2B;
}

.search-input {
background-color: #121212;
color: #eee;
}

}

0 comments on commit 4ac03a7

Please sign in to comment.