Fix colors for dark mode

This commit is contained in:
friebetill 2023-02-01 18:05:33 +08:00
parent 45f458bae0
commit a59fc198f3

View file

@ -9,12 +9,24 @@
padding: 0.1rem 0;
}
.bg-turquoise-light {
background-color: #d9f4ef;
@media (prefers-color-scheme: light) {
.bg-turquoise-light {
background-color: #D9F4EF;
}
.bg-blue-light {
background-color: #25403B;
}
}
.bg-blue-light {
background-color: #d9edff;
@media (prefers-color-scheme: dark) {
.bg-turquoise-light {
background-color: #25403B;
}
.bg-blue-light {
background-color: #25394B;
}
}
.flex-row {
@ -31,7 +43,7 @@
text-decoration-line: none;
}
.no-decoration:hover{
.no-decoration:hover {
text-decoration: none;
text-decoration-line: none;
}
@ -47,4 +59,4 @@
.text-gray {
color: #919191;
}
}