2024-09-28 23:24:40 +05:30
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
|
module.exports = {
|
|
|
|
|
prefix: 'tw-',
|
|
|
|
|
important: false,
|
|
|
|
|
content: [
|
2024-10-03 19:04:04 +05:30
|
|
|
"landingpages/landingpage/**/*.{html, jsx, js}",
|
|
|
|
|
"landingpages/landingpage/**/*.js",
|
|
|
|
|
"landingpages/landingpage/**/*.html",
|
2024-09-28 23:24:40 +05:30
|
|
|
],
|
|
|
|
|
darkMode: 'class',
|
|
|
|
|
theme: {
|
|
|
|
|
extend: {
|
|
|
|
|
colors: {
|
|
|
|
|
primary: '#fff',
|
|
|
|
|
secondary: "#000",
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
plugins: [],
|
|
|
|
|
}
|
|
|
|
|
|