Blame view

src/settings/colorSetting.ts 443 Bytes
1
2
3
4
// header preset color
export const HEADER_PRESET_BG_COLOR_LIST: string[] = [
  '#ffffff',
  '#009688',
vben authored
5
  '#5172DC',
6
7
8
9
10
  '#1E9FFF',
  '#018ffb',
  '#409eff',
  '#4e73df',
  '#e74c3c',
11
  '#24292e',
12
13
  '#394664',
  '#001529',
14
  '#383f45',
15
16
17
18
19
20
];

// sider preset color
export const SIDE_BAR_BG_COLOR_LIST: string[] = [
  '#273352',
  '#ffffff',
vben authored
21
  '#191b24',
22
  '#191a23',
23
24
  '#001529',
  '#304156',
vben authored
25
  '#001628',
26
27
  '#28333E',
  '#344058',
28
  '#383f45',
29
];