LinkList/frontend/tailwind.config.js

40 lines
658 B
JavaScript
Raw Normal View History

2021-03-03 18:51:53 -05:00
module.exports = {
purge: {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
// These options are passed through directly to PurgeCSS
options: {
keyframes: true,
fontFace: true,
},
},
darkMode: false, // or 'media' or 'class'
theme: {
2021-03-22 15:35:13 -04:00
extend: {
colors: {
gray: {
450: "#3d3b3c",
},
},
fontSize: {
s: ".82rem",
},
},
minWidth: {
"9/10": "90%",
},
maxWidth: {
"6/10": "60%",
},
container: {
center: true,
},
2021-03-03 18:51:53 -05:00
},
variants: {
extend: {},
},
plugins: [],
};