fix(ui): system theming for charts (#5740)
This commit is contained in:
parent
f9faf3e40f
commit
6a70ab95e2
1 changed files with 3 additions and 0 deletions
|
|
@ -83,6 +83,9 @@
|
|||
|
||||
function checkTheme() {
|
||||
theme = localStorage.theme
|
||||
if (theme == 'system') {
|
||||
theme = window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light'
|
||||
}
|
||||
if (theme == 'dark') {
|
||||
baseColor = '#FCD452'
|
||||
textColor = '#ffffff'
|
||||
|
|
|
|||
Loading…
Reference in a new issue