Files
dempc_nextjs/tailwind.config.js

28 lines
512 B
JavaScript
Raw Normal View History

2025-10-21 13:54:21 +07:00
module.exports = {
purge: [],
darkMode: false, // or 'media' or 'class'
theme: {
container: { center: true, padding: "16px" },
extend: {
colors: {
brand: {
primary: "#E53935",
dark: "#B71C1C",
gray: "#F5F5F5",
},
},
boxShadow: {
header: "0 0 2px 0 #e7e7e7",
},
},
},
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
variants: {
extend: {},
},
plugins: [],
}