mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-16 10:48:48 +08:00
36 lines
567 B
TypeScript
36 lines
567 B
TypeScript
// 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',
|
|
];
|
|
|
|
export const theme = {
|
|
//深色主题
|
|
darkTheme: true,
|
|
//系统主题色
|
|
appTheme: '#63e2b7',
|
|
//系统内置主题色列表
|
|
appThemeList,
|
|
};
|
|
|
|
// 修改边框圆角
|
|
export const borderRadius = '8px'
|
|
|
|
// 轮播间隔
|
|
export const carouselInterval = 5000 |