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

20 lines
326 B
JavaScript
Raw Normal View History

2020-09-21 15:42:32 -05:00
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
},
2020-09-23 15:19:36 -03:00
purge: [
"./components/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./ui/**/*.{js,ts,jsx,tsx}",
],
2020-09-21 15:42:32 -05:00
theme: {
extend: {
colors: {
2020-09-23 15:19:36 -03:00
"accent-1": "#333",
2020-09-21 15:42:32 -05:00
},
},
},
variants: {},
plugins: [],
};