27 lines
489 B
JavaScript
27 lines
489 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: "class",
|
|
content: [
|
|
"./src/**/*.{html,ts}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
"backgroundColor": {
|
|
"primary": "#EAE6E1",
|
|
"secondary": "#F5F5F5",
|
|
"third": "#F2994A",
|
|
},
|
|
"textColor": {
|
|
"primary": "#513C2F",
|
|
},
|
|
"fontFamily": {
|
|
"kanit": ["Kanit"],
|
|
}
|
|
},
|
|
},
|
|
daisyui: {
|
|
themes: ["cupcake"]
|
|
},
|
|
plugins: [require('daisyui')],
|
|
}
|
|
|