goview_vue/src/settings/designSetting.ts

38 lines
619 B
TypeScript
Raw Normal View History

2021-12-10 14:11:49 +08:00
// app theme preset color
export const appThemeList: string[] = [
'#2d8cf0',
'#0960bd',
'#0084f4',
'#009688',
'#536dfe',
'#ff5c93',
'#ee4f12',
'#0096c7',
'#9c27b0',
'#ff9800',
'#FF3D68',
'#00C1D4',
'#71EFA3',
'#171010',
'#78DEC7',
'#1768AC',
'#FB9300',
'#FC5404',
];
2021-12-14 20:00:20 +08:00
export const theme = {
2021-12-15 22:16:16 +08:00
darkThemeName: 'dark',
lightThemeName: 'light',
2021-12-10 14:11:49 +08:00
//深色主题
2021-12-14 20:00:20 +08:00
darkTheme: true,
2021-12-10 14:11:49 +08:00
//系统主题色
2021-12-14 20:00:20 +08:00
appTheme: '#63e2b7',
2021-12-10 14:11:49 +08:00
//系统内置主题色列表
appThemeList,
};
2021-12-14 20:00:20 +08:00
// 修改边框圆角
2021-12-15 14:25:28 +08:00
export const borderRadius = '8px'
// 轮播间隔
export const carouselInterval = 5000