mirror of
https://github.com/vercel/commerce.git
synced 2025-03-16 07:22:32 +00:00
27 lines
514 B
JavaScript
27 lines
514 B
JavaScript
|
module.exports = {
|
||
|
future: {
|
||
|
removeDeprecatedGapUtilities: true,
|
||
|
},
|
||
|
purge: [
|
||
|
"./components/**/*.{js,ts,jsx,tsx}",
|
||
|
"./pages/**/*.{js,ts,jsx,tsx}",
|
||
|
"./ui/**/*.{js,ts,jsx,tsx}",
|
||
|
],
|
||
|
theme: {
|
||
|
extend: {
|
||
|
colors: {
|
||
|
"accent-1": "#FAFAFA",
|
||
|
"accent-4": "#888",
|
||
|
violet: "#7928CA",
|
||
|
pink: "#FF0080",
|
||
|
cyan: "#50E3C2",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
variants: {},
|
||
|
plugins: [require("@tailwindcss/ui")],
|
||
|
experimental: {
|
||
|
applyComplexClasses: true,
|
||
|
},
|
||
|
};
|