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