54 lines
1.3 KiB
TypeScript
54 lines
1.3 KiB
TypeScript
import { ThemeEnum } from '../enums/appEnum';
|
|
|
|
export const prefixCls = 'jeecg';
|
|
|
|
export const darkMode = ThemeEnum.LIGHT;
|
|
|
|
// app theme preset color
|
|
export const APP_PRESET_COLOR_LIST: string[] = ['#0960bd', '#1890ff', '#009688', '#536dfe', '#ff5c93', '#ee4f12', '#0096c7', '#9c27b0', '#ff9800'];
|
|
|
|
// header preset color
|
|
export const HEADER_PRESET_BG_COLOR_LIST: string[] = [
|
|
'#ffffff',
|
|
'#151515',
|
|
'#009688',
|
|
'#5172DC',
|
|
'#018ffb',
|
|
'#409eff',
|
|
'#e74c3c',
|
|
'#24292e',
|
|
'#394664',
|
|
'#001529',
|
|
'#383f45',
|
|
];
|
|
|
|
// sider preset color
|
|
export const SIDE_BAR_BG_COLOR_LIST: string[] = [
|
|
'#001529',
|
|
'#212121',
|
|
'#273352',
|
|
'#ffffff',
|
|
'#191b24',
|
|
'#191a23',
|
|
'#304156',
|
|
'#001628',
|
|
'#28333E',
|
|
'#344058',
|
|
'#383f45',
|
|
];
|
|
|
|
// sider logo line preset color [logo½¥±äÉ«]
|
|
export const SIDER_LOGO_BG_COLOR_LIST: string[] = [
|
|
'linear-gradient(180deg, #000000, #021d37)',
|
|
'linear-gradient(180deg, #000000, #282828)',
|
|
'linear-gradient(180deg, #1c253e, #2b385c)',
|
|
'linear-gradient(180deg, #ffffff, #faf8f8)',
|
|
'linear-gradient(180deg, #000000, #242735)',
|
|
'linear-gradient(180deg, #000000, #1d1f2a)',
|
|
'linear-gradient(180deg, #304156, #32455d)',
|
|
'linear-gradient(180deg, #000000, #001f39)',
|
|
'linear-gradient(180deg, #000000, #2b3743)',
|
|
'linear-gradient(180deg, #344058, #374560)',
|
|
'linear-gradient(180deg, #383f45, #3b434b)',
|
|
];
|