update dark theme style of desktop version

This commit is contained in:
MaysWind
2025-08-10 01:38:08 +08:00
parent 6b5aac0111
commit 876bf8cc31
5 changed files with 29 additions and 12 deletions
@@ -243,6 +243,11 @@ const chartOptions = computed<object>(() => {
return formatAmountWithCurrency(Math.floor(params.value as number), props.account.currency);
}
}
},
splitLine: {
lineStyle: {
color: isDarkMode.value ? '#4f4f4f' : '#e1e6f2',
}
}
}
],
@@ -376,6 +376,11 @@ const chartOptions = computed<object>(() => {
return formatAmountWithCurrency(Math.floor(params.value as number), props.defaultCurrency);
}
}
},
splitLine: {
lineStyle: {
color: isDarkMode.value ? '#4f4f4f' : '#e1e6f2',
}
}
}
],