/** @type {import('tailwindcss').Config} */ module.exports = { content: [ "./src/**/*.{html,ts}", "./node_modules/flowbite/**/*.js" // add this line ], theme: { extend: { "backgroundColor": { "primary": "#EAE6E1", "secondary": "#F5F5F5", }, "textColor": { "primary": "#513C2F", }, "fontFamily": { "kanit": ["Kanit"], } }, }, plugins: [require("flowbite/plugin")], }