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.
57 lines
992 B
57 lines
992 B
import { ThemeEnum } from '../enums/appEnum';
|
|
|
|
export const prefixCls = 'vben';
|
|
|
|
export const multipleTabHeight = 30;
|
|
|
|
export const darkMode = ThemeEnum.LIGHT;
|
|
|
|
// 页脚固定高度
|
|
export const footerHeight = 75;
|
|
|
|
// .@{namespace}-layout-multiple-header__placeholder
|
|
// 全屏页头动画时长
|
|
export const layoutMultipleHeadePlaceholderTime = 0.6;
|
|
|
|
// app theme preset color
|
|
export const APP_PRESET_COLOR_LIST: string[] = [
|
|
'#1677ff',
|
|
'#0960bd',
|
|
'#52c41a',
|
|
'#536dfe',
|
|
'#eb2f96',
|
|
'#13c2c2',
|
|
'#0096c7',
|
|
'#722ed1',
|
|
'#fa8c16',
|
|
];
|
|
|
|
// 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',
|
|
];
|
|
|