create-iking-admin
Version:
金合技术中台脚手架
111 lines (105 loc) • 1.69 kB
text/typescript
import { ThemeEnum } from '../../global/enums/appEnum';
export const prefixCls = 'iking';
export const darkMode = ThemeEnum.LIGHT;
// app theme preset color
export const APP_PRESET_COLOR_LIST: string[] = [
'#0960bd',
'#0084f4',
'#009688',
'#536dfe',
'#ff5c93',
'#ee4f12',
'#0096c7',
'#9c27b0',
'#ff9800',
'#001529',
'#212121',
'#273352',
'#ffffff',
'#191b24',
'#191a23',
'#304156',
'#001628',
'#28333E',
'#344058',
'#383f45',
'#151515',
'#009688',
'#5172DC',
'#018ffb',
'#409eff',
'#e74c3c',
'#24292e',
'#394664',
'#591142',
'#200317',
'#4E0D6C',
'#9023C3',
'#061467',
'#0B27DB',
'#097AA2',
'#08A5DC',
'#07A282',
];
// header preset color
export const HEADER_PRESET_BG_COLOR_LIST: string[] = [
'#001529',
'#212121',
'#273352',
'#ffffff',
'#191b24',
'#191a23',
'#304156',
'#001628',
'#28333E',
'#344058',
'#383f45',
'#151515',
'#009688',
'#5172DC',
'#018ffb',
'#409eff',
'#e74c3c',
'#24292e',
'#394664',
'#591142',
'#200317',
'#4E0D6C',
'#9023C3',
'#061467',
'#0B27DB',
'#097AA2',
'#08A5DC',
'#07A282',
];
// sider preset color
export const SIDE_BAR_BG_COLOR_LIST: string[] = [
'#001529',
'#212121',
'#273352',
'#ffffff',
'#191b24',
'#191a23',
'#304156',
'#001628',
'#28333E',
'#344058',
'#383f45',
'#151515',
'#009688',
'#5172DC',
'#018ffb',
'#409eff',
'#e74c3c',
'#24292e',
'#394664',
'#591142',
'#200317',
'#4E0D6C',
'#9023C3',
'#061467',
'#0B27DB',
'#097AA2',
'#08A5DC',
'#07A282',
];