Blame view

src/settings/designSetting.ts 762 Bytes
Vben authored
1
import { ThemeEnum } from '../enums/appEnum';
Vben authored
2
3

export const prefixCls = 'vben';
vben authored
4
Vben authored
5
6
export const darkMode = ThemeEnum.LIGHT;
vben authored
7
// app theme preset color
vben authored
8
export const APP_PRESET_COLOR_LIST: string[] = [
Vben authored
9
  '#0960bd',
vben authored
10
11
12
13
14
15
16
17
18
19
20
  '#0084f4',
  '#009688',
  '#536dfe',
  '#ff5c93',
  '#ee4f12',
  '#0096c7',
  '#9c27b0',
  '#ff9800',
];

// header preset color
vben authored
21
22
export const HEADER_PRESET_BG_COLOR_LIST: string[] = [
  '#ffffff',
Vben authored
23
  '#151515',
vben authored
24
25
26
27
28
29
30
31
32
33
34
35
36
  '#009688',
  '#5172DC',
  '#018ffb',
  '#409eff',
  '#e74c3c',
  '#24292e',
  '#394664',
  '#001529',
  '#383f45',
];

// sider preset color
export const SIDE_BAR_BG_COLOR_LIST: string[] = [
37
  '#001529',
Vben authored
38
  '#212121',
39
  '#273352',
vben authored
40
41
42
43
44
45
46
47
48
  '#ffffff',
  '#191b24',
  '#191a23',
  '#304156',
  '#001628',
  '#28333E',
  '#344058',
  '#383f45',
];