fix for dark mode text

This commit is contained in:
Xanazf 2025-04-06 12:36:02 +03:00
parent 9f1575a285
commit 778cd261e0
Signed by: Xanazf
GPG key ID: 4E4A5AD1FB748427

View file

@ -39,18 +39,17 @@ a {
cursor: pointer;
}
}
html.dark .baselayout,
html.dark .docslayout {
background-color: hsl(var(--bg-900));
color: hsl(var(--secondary-400));
}
html.dark {
& .header {
background-color: hsl(var(--secondary-900));
color: hsl(var(--secondary-500));
}
& .baselayout,
.docslayout {
background-color: hsl(var(--bg-900));
color: hsl(var(--secondary-400));
}
}
/* layout and positioning */