16 lines
347 B
TypeScript
16 lines
347 B
TypeScript
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,
|
|
}
|