fix(ui): system theming for charts (#5740)
This commit is contained in:
@@ -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'
|
||||||
|
Reference in New Issue
Block a user