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

27 lines
511 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-29 14:17:53 -03:00
"accent-4": "#888",
violet: "#7928CA",
pink: "#FF0080",
cyan: "#50E3C2",
2020-09-21 15:42:32 -05:00
},
},
},
variants: {},
2020-09-29 09:23:23 -03:00
plugins: [require("@tailwindcss/ui")],
2020-09-29 14:17:53 -03:00
experimental: {
applyComplexClasses: true,
},
2020-09-21 15:42:32 -05:00
};