19 lines
370 B
JavaScript
19 lines
370 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./src/**/*.{html,ts}",
|
|
"./node_modules/flowbite/**/*.js" // add this line
|
|
],
|
|
theme: {
|
|
extend: {
|
|
"backgroundColor": {
|
|
"primary": "#EAE6E1",
|
|
},
|
|
"textColor": {
|
|
"primary": "#513C2F",
|
|
}
|
|
},
|
|
},
|
|
plugins: [require("flowbite/plugin")],
|
|
}
|
|
|