wupengfei
2025-06-04 f83f74863b05def138a5c87c3084e0de0dc01392
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
export interface ThemeColorItem {
  primary: string;
}
 
export type ThemeColorName = 'default' | 'green' | 'orange' | 'red' | 'brown' | 'black';
 
export type ThemeColorsType = Record<ThemeColorName, ThemeColorItem>;
 
export const ThemeColors = {
  default: {
    primary: '#2878ff',
  },
  green: {
    primary: '#32B16C',
  },
  orange: {
    primary: '#FF7C02',
  },
  red: {
    primary: '#FF1E2F',
  },
  brown: {
    primary: '#81511C',
  },
  black: {
    primary: '#052B3A',
  },
};