fix: chart font color

This commit is contained in:
Uyarn 2022-04-06 17:20:43 +08:00
parent d01b7b39ca
commit 063ae54e9b

View File

@ -45,7 +45,7 @@ export const useSettingStore = defineStore('setting', {
document.documentElement.setAttribute('theme-mode', isDarkMode ? 'dark' : '');
this.chartColor = isDarkMode ? DARK_CHART_COLORS : LIGHT_CHART_COLORS;
this.chartColors = isDarkMode ? DARK_CHART_COLORS : LIGHT_CHART_COLORS;
},
changeBrandTheme(brandTheme: string) {
document.documentElement.setAttribute('theme-color', brandTheme);