This commit is contained in:
Luis Alvarez
2020-09-30 11:44:38 -05:00
commit eb44455cde
67 changed files with 19268 additions and 0 deletions

26
tailwind.config.js Normal file
View File

@@ -0,0 +1,26 @@
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,
},
};