Files
PyUIBuilder/landingpages/landingpage/tailwind.config.js
2024-10-03 19:04:04 +05:30

22 lines
337 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
prefix: 'tw-',
important: false,
content: [
"landing-page/**/*.{html, jsx, js}",
"landing-page/**/*.js",
"landing-page/**/*.html",
],
darkMode: 'class',
theme: {
extend: {
colors: {
primary: '#fff',
secondary: "#000",
}
},
},
plugins: [],
}