LinkList/frontend/tailwind.config.js

40 lines
658 B
JavaScript

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: {
extend: {
colors: {
gray: {
450: "#3d3b3c",
},
},
fontSize: {
s: ".82rem",
},
},
minWidth: {
"9/10": "90%",
},
maxWidth: {
"6/10": "60%",
},
container: {
center: true,
},
},
variants: {
extend: {},
},
plugins: [],
};