forked from cssnano/cssnano
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpostcss.config.js
32 lines (32 loc) · 895 Bytes
/
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
module.exports = {
plugins: [
// require("stylelint")(),
require('postcss-preset-env')({
stage: 0,
features: {
'custom-properties': {
preserve: false,
variables: {
brandColor: '#40b97b',
brandColorComplement: '#ba5240',
/* phenomic defaults */
maxWidth: '60rem',
colorPrimaryDark: '#107491',
colorPrimary: '#007acc',
colorSecondaryDark: '#22846C',
colorSecondary: '#46BE77',
colorNeutralDark: '#111',
colorNeutral: '#8C8D91',
colorNeutralLight: '#FBFCFC',
colorText: '#555',
},
},
},
}),
require('postcss-color-mod-function'),
// require("postcss-reporter")(),
// ...!config.production ? [
// require("postcss-browser-reporter")(),
// ] : [],
],
};