This commit is contained in:
2025-09-24 11:30:06 +08:00
parent 16b4b27352
commit 12f46e6f8e
23 changed files with 835 additions and 26 deletions

View File

@@ -0,0 +1,15 @@
import { type ConfigProviderProps, darkTheme, dateZhCN, type GlobalTheme, lightTheme, zhCN } from 'naive-ui'
const lTheme: GlobalTheme = {
...lightTheme,
common: {
...lightTheme.common,
primaryColor: '#0070f3'
}
}
export const configProviderProps: ConfigProviderProps = {
theme: lTheme,
dateLocale: dateZhCN,
locale: zhCN,
}