forked from openproxyspace/unfx-proxy-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostcss.config.js
42 lines (42 loc) · 1.12 KB
/
postcss.config.js
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
module.exports = {
plugins: {
'postcss-css-variables': {
variables: {
'--green-color': {
value: '#31bc86'
},
'--blue-color': {
value: '#5396d8'
},
'--grey-color': {
value: '#424a60'
},
'--red-color': {
value: '#e74856'
},
'--back-black-color': {
value: '#1e272e'
},
'--neo-black-color': {
value: '#2C3A47'
},
'--white-color': {
value: '#f5f6fa'
},
'--white-color-back': {
value: '#f0f2fa'
}
}
},
'postcss-preset-env': {
stage: 4,
features: {
'nesting-rules': true
}
},
'postcss-color-function': {},
'postcss-easings': {
easings: { easeOne: 'cubic-bezier(0.23, 1, 0.32, 1)' }
}
}
};