-
Notifications
You must be signed in to change notification settings - Fork 0
/
antd.ts
50 lines (50 loc) · 891 Bytes
/
antd.ts
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
export const antd = {
red: {
100: '#fff1f0',
200: '#ffccc7',
300: '#ffa39e',
400: '#ff7875',
500: '#ff4d4f',
600: '#f5222d',
700: '#cf1322',
800: '#a8071a',
900: '#820014',
950: '#5c0011'
},
orange: {
100: '#fff7e6',
200: '#ffe7ba',
300: '#ffd591',
400: '#ffc069',
500: '#ffa940',
600: '#fa8c16',
700: '#d46b08',
800: '#ad4e00',
900: '#873800',
950: '#612500'
},
green: {
100: '#f6ffed',
200: '#d9f7be',
300: '#b7eb8f',
400: '#95de64',
500: '#73d13d',
600: '#52c41a',
700: '#389e0d',
800: '#237804',
900: '#135200',
950: '#092b00'
},
blue: {
100: '#e6f4ff',
200: '#bae0ff',
300: '#91caff',
400: '#69b1ff',
500: '#4096ff',
600: '#1677ff',
700: '#0958d9',
800: '#003eb3',
900: '#002c8c',
950: '#001d66'
}
} as const;