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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,3 +5,10 @@ body {
#root {
@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;
}