nalomu
2023-01-18 7e77177ed810e0d02ec35807c90448161095a033
提交 | 用户 | age
5b8eb4 1 import { ThemeEnum } from '../enums/appEnum';
215d8b 2
V 3 export const prefixCls = 'vben';
5b8eb4 4
V 5 export const darkMode = ThemeEnum.LIGHT;
eba557 6
236575 7 // app theme preset color
3d1681 8 export const APP_PRESET_COLOR_LIST: string[] = [
f57eb9 9   '#0960bd',
3d1681 10   '#0084f4',
V 11   '#009688',
12   '#536dfe',
13   '#ff5c93',
14   '#ee4f12',
15   '#0096c7',
16   '#9c27b0',
17   '#ff9800',
18 ];
19
20 // header preset color
eba557 21 export const HEADER_PRESET_BG_COLOR_LIST: string[] = [
V 22   '#ffffff',
5b8eb4 23   '#151515',
eba557 24   '#009688',
V 25   '#5172DC',
26   '#018ffb',
27   '#409eff',
28   '#e74c3c',
29   '#24292e',
30   '#394664',
31   '#001529',
32   '#383f45',
33 ];
34
35 // sider preset color
36 export const SIDE_BAR_BG_COLOR_LIST: string[] = [
82c318 37   '#001529',
5b8eb4 38   '#212121',
da2d88 39   '#273352',
eba557 40   '#ffffff',
V 41   '#191b24',
42   '#191a23',
43   '#304156',
44   '#001628',
45   '#28333E',
46   '#344058',
47   '#383f45',
48 ];