2018-07-30 14:05:22 +00:00
|
|
|
module.exports = {
|
|
|
|
plugins: [
|
2019-03-14 10:18:54 +00:00
|
|
|
require( '@wordpress/postcss-themes' )( {
|
2019-02-06 06:41:53 +00:00
|
|
|
// @todo A default is required for now. Fix postcss-themes to allow no default
|
2018-07-20 03:40:15 +00:00
|
|
|
defaults: {
|
|
|
|
primary: '#0085ba',
|
|
|
|
secondary: '#11a0d2',
|
|
|
|
toggle: '#11a0d2',
|
|
|
|
button: '#0085ba',
|
|
|
|
outlines: '#007cba',
|
|
|
|
},
|
|
|
|
themes: {
|
2019-05-28 14:05:55 +00:00
|
|
|
'woocommerce-profile-wizard__body': {
|
|
|
|
primary: '#d52c82',
|
|
|
|
secondary: '#d52c82',
|
|
|
|
toggle: '#d52c82',
|
|
|
|
button: '#d52c82',
|
|
|
|
outlines: '#d52c82',
|
|
|
|
},
|
2018-07-20 03:40:15 +00:00
|
|
|
'woocommerce-page': {
|
|
|
|
primary: '#95588a',
|
|
|
|
secondary: '#95588a',
|
|
|
|
toggle: '#95588a',
|
|
|
|
button: '#95588a',
|
|
|
|
outlines: '#95588a',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
} ),
|
2018-09-06 15:11:34 +00:00
|
|
|
require( 'autoprefixer' )( { grid: true } ),
|
2018-07-20 03:40:15 +00:00
|
|
|
require( 'postcss-color-function' ),
|
2018-07-30 14:05:22 +00:00
|
|
|
],
|
|
|
|
};
|