Taobin-Recipe-Manager/client/tailwind.config.js

24 lines
461 B
JavaScript
Raw Normal View History

2023-09-14 15:43:53 +07:00
/** @type {import('tailwindcss').Config} */
module.exports = {
2023-09-20 15:10:35 +07:00
content: [
"./src/**/*.{html,ts}",
"./node_modules/flowbite/**/*.js" // add this line
],
2023-09-14 15:43:53 +07:00
theme: {
extend: {
"backgroundColor": {
"primary": "#EAE6E1",
2023-09-21 12:37:21 +07:00
"secondary": "#F5F5F5",
},
"textColor": {
"primary": "#513C2F",
2023-09-21 12:37:21 +07:00
},
"fontFamily": {
"kanit": ["Kanit"],
}
},
2023-09-14 15:43:53 +07:00
},
2023-09-20 15:10:35 +07:00
plugins: [require("flowbite/plugin")],
2023-09-14 15:43:53 +07:00
}