vben
authored
|
1
2
3
4
|
// header preset color
export const HEADER_PRESET_BG_COLOR_LIST: string[] = [
'#ffffff',
'#009688',
|
vben
authored
|
5
|
'#5172DC',
|
vben
authored
|
6
7
8
9
10
|
'#1E9FFF',
'#018ffb',
'#409eff',
'#4e73df',
'#e74c3c',
|
vben
authored
|
11
|
'#24292e',
|
vben
authored
|
12
13
|
'#394664',
'#001529',
|
vben
authored
|
14
|
'#383f45',
|
vben
authored
|
15
16
17
18
19
20
|
];
// sider preset color
export const SIDE_BAR_BG_COLOR_LIST: string[] = [
'#273352',
'#ffffff',
|
vben
authored
|
21
|
'#191b24',
|
vben
authored
|
22
|
'#191a23',
|
vben
authored
|
23
24
|
'#001529',
'#304156',
|
vben
authored
|
25
|
'#001628',
|
vben
authored
|
26
27
|
'#28333E',
'#344058',
|
vben
authored
|
28
|
'#383f45',
|
vben
authored
|
29
|
];
|