4
0
forked from crowetic/commerce
commerce/tailwind.config.js

32 lines
622 B
JavaScript
Raw Normal View History

2020-09-30 11:44:38 -05:00
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
},
purge: [
2020-10-01 20:40:40 -05:00
'./components/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}',
'./ui/**/*.{js,ts,jsx,tsx}',
2020-09-30 11:44:38 -05:00
],
theme: {
extend: {
colors: {
2020-10-01 20:40:40 -05:00
'accent-1': '#FAFAFA',
'accent-4': '#888',
violet: '#7928CA',
pink: '#FF0080',
cyan: '#50E3C2',
blue: '#0070F3',
2020-10-03 11:00:08 -03:00
primary: '#000',
textColor: {
primary: '#FFF',
},
2020-09-30 11:44:38 -05:00
},
},
},
variants: {},
2020-10-01 20:40:40 -05:00
plugins: [require('@tailwindcss/ui')],
2020-09-30 11:44:38 -05:00
experimental: {
applyComplexClasses: true,
},
2020-10-01 20:40:40 -05:00
}