strapi mit next.js
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

31 lines
651 B

const { colors } = require(`tailwindcss/defaultTheme`)
module.exports = {
mode: "jit", // see https://tailwindcss.com/docs/just-in-time-mode
purge: ["./components/**/*.js", "./pages/**/*.js"],
darkMode: false, // or "media" or "class"
theme: {
extend: {
colors: {
primary: colors.indigo,
},
container: {
center: true,
padding: {
DEFAULT: "1rem",
md: "2rem",
},
},
},
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
},
},
variants: {
extend: {},
},
plugins: [require("@tailwindcss/typography")],
}