2023-09-19 20:42:08 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
2023-10-15 02:54:32 +00:00
|
|
|
const defaultTheme = require("tailwindcss/defaultTheme");
|
|
|
|
|
2023-09-19 20:42:08 +00:00
|
|
|
module.exports = {
|
|
|
|
daisyui: {
|
|
|
|
themes: [
|
|
|
|
{
|
|
|
|
halloween: {
|
|
|
|
...require("daisyui/src/theming/themes")["[data-theme=halloween]"],
|
|
|
|
primary: "#12D10E",
|
|
|
|
secondary: "#06AFC6",
|
2023-09-21 18:10:34 +00:00
|
|
|
"base-content": "#ffffff",
|
2023-09-19 20:42:08 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
content: ["./src/**/*.{js,jsx,ts,tsx}"],
|
|
|
|
theme: {
|
2023-10-15 02:54:32 +00:00
|
|
|
fontFamily: {
|
2023-10-17 20:17:08 +00:00
|
|
|
sans: ["Inter", ...defaultTheme.fontFamily.sans],
|
2023-10-15 02:54:32 +00:00
|
|
|
},
|
2023-09-19 20:42:08 +00:00
|
|
|
extend: {},
|
|
|
|
},
|
2023-09-25 18:00:52 +00:00
|
|
|
plugins: [require("@tailwindcss/typography"), require("daisyui")],
|
2023-09-19 20:42:08 +00:00
|
|
|
};
|