2021-10-20 14:32:09 +08:00
|
|
|
import { ThemeEnum } from '../enums/appEnum';
|
|
|
|
|
2022-03-10 09:47:29 +08:00
|
|
|
export const prefixCls = 'jeecg';
|
2021-10-20 14:32:09 +08:00
|
|
|
|
|
|
|
export const darkMode = ThemeEnum.LIGHT;
|
|
|
|
|
|
|
|
// app theme preset color
|
2022-06-10 10:44:44 +08:00
|
|
|
export const APP_PRESET_COLOR_LIST: string[] = ['#0960bd', '#1890ff', '#009688', '#536dfe', '#ff5c93', '#ee4f12', '#0096c7', '#9c27b0', '#ff9800'];
|
2021-10-20 14:32:09 +08:00
|
|
|
|
|
|
|
// header preset color
|
2022-09-22 14:06:18 +08:00
|
|
|
export const HEADER_PRESET_BG_COLOR_LIST: string[] = [
|
|
|
|
'#ffffff',
|
|
|
|
'#151515',
|
|
|
|
'#009688',
|
|
|
|
'#5172DC',
|
|
|
|
'#018ffb',
|
|
|
|
'#409eff',
|
|
|
|
'#e74c3c',
|
|
|
|
'#24292e',
|
|
|
|
'#394664',
|
|
|
|
'#001529',
|
|
|
|
'#383f45',
|
|
|
|
];
|
2021-10-20 14:32:09 +08:00
|
|
|
|
|
|
|
// sider preset color
|
2022-09-22 14:06:18 +08:00
|
|
|
export const SIDE_BAR_BG_COLOR_LIST: string[] = [
|
|
|
|
'#001529',
|
|
|
|
'#212121',
|
|
|
|
'#273352',
|
|
|
|
'#ffffff',
|
|
|
|
'#191b24',
|
|
|
|
'#191a23',
|
|
|
|
'#304156',
|
|
|
|
'#001628',
|
|
|
|
'#28333E',
|
|
|
|
'#344058',
|
|
|
|
'#383f45',
|
|
|
|
];
|