36 lines
560 B
JavaScript
36 lines
560 B
JavaScript
const config = {
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
noto: ['Noto Sans Thai', 'sans-serif'],
|
|
},
|
|
}
|
|
},
|
|
|
|
plugins: [require("daisyui")],
|
|
daisyui: {
|
|
styled: true,
|
|
themes: [
|
|
{
|
|
mytheme: {
|
|
primary: "#02A998",
|
|
secondary: "#EC4899",
|
|
accent: "#37cdbe",
|
|
neutral: "#3d4451",
|
|
"base-100": "#ffffff",
|
|
},
|
|
}
|
|
,"corporate"
|
|
,"cmyk"],
|
|
base: true,
|
|
utils: true,
|
|
logs: true,
|
|
rtl: false,
|
|
prefix: "",
|
|
darkTheme: "dark",
|
|
},
|
|
};
|
|
|
|
module.exports = config;
|