fix colors in light mode

pull/1/head
radex 2023-08-18 15:31:53 +02:00
parent ee9e9becf5
commit 23244bdf24
1 changed files with 8 additions and 5 deletions

View File

@ -30,10 +30,13 @@
.label-item code {
margin: 0em 1em;
}
a {
color: #81d4fa !important;
}
a.navbar-brand {
color: #fff !important;
@media (prefers-color-scheme: dark) {
a {
color: #81d4fa !important;
}
a.navbar-brand {
color: #fff !important;
}
}