You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
890 B
53 lines
890 B
/** |
|
* @program: kicc-ui |
|
* @description: ant-design颜色配置 |
|
* @author: wangxiang4 |
|
* @create: 2022/4/7 |
|
*/ |
|
|
|
import { ThemeEnum } from '../enums/appEnum'; |
|
export const prefixCls = 'kicc'; |
|
export const darkMode = ThemeEnum.LIGHT; |
|
|
|
/** 应用主题预设颜色 */ |
|
export const APP_PRESET_COLOR_LIST: string[] = [ |
|
'#0084f4', |
|
'#0960bd', |
|
'#009688', |
|
'#536dfe', |
|
'#ff5c93', |
|
'#ee4f12', |
|
'#0096c7', |
|
'#9c27b0', |
|
'#ff9800', |
|
]; |
|
|
|
/** 导航栏预设颜色 */ |
|
export const HEADER_PRESET_BG_COLOR_LIST: string[] = [ |
|
'#ffffff', |
|
'#151515', |
|
'#009688', |
|
'#5172DC', |
|
'#018ffb', |
|
'#409eff', |
|
'#e74c3c', |
|
'#24292e', |
|
'#394664', |
|
'#001529', |
|
'#383f45', |
|
]; |
|
|
|
/** 侧边预设颜色 */ |
|
export const SIDE_BAR_BG_COLOR_LIST: string[] = [ |
|
'#001529', |
|
'#212121', |
|
'#273352', |
|
'#ffffff', |
|
'#191b24', |
|
'#191a23', |
|
'#304156', |
|
'#001628', |
|
'#28333E', |
|
'#344058', |
|
'#383f45', |
|
];
|
|
|