-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom-properties.ts
54 lines (51 loc) · 1.09 KB
/
custom-properties.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
51
52
53
54
import { toCustomPropertiesArray, toCustomPropertiesString } from '../src'
const customProperties = {
success: {
100: '#F4FDCD',
200: '#E6FB9C',
300: '#D1F46A',
400: '#BAE944',
500: '#9ADB0D',
600: '#7EBC09',
700: '#649D06',
800: '#4C7F04',
900: '#3B6902',
},
info: {
100: '#CEFEF7',
200: '#9DFEF6',
300: '#6CFEFD',
400: '#48F0FD',
500: '#0CD8FC',
600: '#08A9D8',
700: '#067FB5',
800: '#035B92',
900: '#024278',
},
warning: {
100: '#FEF6D9',
200: '#FEEAB3',
300: '#FEDB8C',
400: '#FDCC70',
500: '#FCB441',
600: '#D8902F',
700: '#B57020',
800: '#925314',
900: '#783E0C',
},
danger: {
100: '#FFE6D6',
200: '#FFC6AD',
300: '#FFA083',
400: '#FF7C65',
500: '#FF4032',
600: '#DB2427',
700: '#B71928',
800: '#930F27',
900: '#7A0927',
},
}
const customPropertiesArray = toCustomPropertiesArray(customProperties)
const customPropertiesString = toCustomPropertiesString(customProperties)
console.log(customPropertiesArray)
console.log(customPropertiesString)