werefox-cafe/src/info/tailwind.config.js

22 lines
452 B
JavaScript
Raw Normal View History

2021-04-17 21:38:19 -05:00
module.exports = {
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: 'media', // or 'media' or 'class'
theme: {
extend: {
colors: {
"werefox-blue": "#60A4FF",
"werefox-pink": "#FF62B6",
"werefox-grey": {
light: "#DBDBDB",
DEFAULT: "#424242",
dark: "#242424",
},
},
},
},
variants: {
extend: {},
},
plugins: [],
};