feat: improve theming (#3032)

Add color-scheme and dark scrollbar styles
This commit is contained in:
Dubzer
2024-03-04 04:35:40 +03:00
committed by GitHub
parent 59314cdf80
commit f0a521f5b8

View File

@ -5,3 +5,10 @@ body {
#root { #root {
@apply relative w-full min-h-full; @apply relative w-full min-h-full;
} }
html.dark {
color-scheme: dark;
scrollbar-color: hsla(0, 0%, 100%, .4) hsla(0, 0%, 100%, .029);
}
html.light {
color-scheme: light;
}