fix(ui): system theming for charts (#5740)

This commit is contained in:
Best Codes
2025-05-02 10:49:01 -05:00
committed by GitHub
parent f9faf3e40f
commit 6a70ab95e2

View File

@@ -83,6 +83,9 @@
function checkTheme() { function checkTheme() {
theme = localStorage.theme theme = localStorage.theme
if (theme == 'system') {
theme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light'
}
if (theme == 'dark') { if (theme == 'dark') {
baseColor = '#FCD452' baseColor = '#FCD452'
textColor = '#ffffff' textColor = '#ffffff'