2023-09-14 15:43:53 +07:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
|
module.exports = {
|
2023-09-25 15:29:42 +07:00
|
|
|
darkMode: "class",
|
2023-09-20 15:10:35 +07:00
|
|
|
content: [
|
|
|
|
|
"./src/**/*.{html,ts}",
|
|
|
|
|
],
|
2023-09-14 15:43:53 +07:00
|
|
|
theme: {
|
2023-09-20 12:18:12 +07:00
|
|
|
extend: {
|
|
|
|
|
"backgroundColor": {
|
|
|
|
|
"primary": "#EAE6E1",
|
2023-09-21 12:37:21 +07:00
|
|
|
"secondary": "#F5F5F5",
|
2023-09-25 15:29:42 +07:00
|
|
|
"third": "#F2994A",
|
2023-09-20 12:18:12 +07:00
|
|
|
},
|
|
|
|
|
"textColor": {
|
|
|
|
|
"primary": "#513C2F",
|
2023-09-21 12:37:21 +07:00
|
|
|
},
|
|
|
|
|
"fontFamily": {
|
|
|
|
|
"kanit": ["Kanit"],
|
2023-09-20 12:18:12 +07:00
|
|
|
}
|
|
|
|
|
},
|
2023-09-14 15:43:53 +07:00
|
|
|
},
|
2023-09-25 15:29:42 +07:00
|
|
|
daisyui: {
|
|
|
|
|
themes: ["cupcake"]
|
|
|
|
|
},
|
|
|
|
|
plugins: [require('daisyui')],
|
2023-09-14 15:43:53 +07:00
|
|
|
}
|
|
|
|
|
|