2023-09-11 01:04:11 +00:00
|
|
|
const defaultTheme = require("tailwindcss/defaultTheme");
|
|
|
|
|
2023-09-06 13:48:01 +00:00
|
|
|
module.exports = {
|
2023-10-06 15:42:22 +00:00
|
|
|
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
|
2023-10-06 22:36:52 +00:00
|
|
|
plugins: [
|
|
|
|
require("@tailwindcss/typography"),
|
|
|
|
require("daisyui")
|
|
|
|
],
|
2023-10-06 15:42:22 +00:00
|
|
|
daisyui: {
|
|
|
|
themes: [
|
|
|
|
"light",
|
|
|
|
"dark",
|
|
|
|
"black",
|
|
|
|
"cupcake",
|
|
|
|
"corporate",
|
|
|
|
"synthwave",
|
|
|
|
"retro",
|
|
|
|
"cyberpunk",
|
|
|
|
],
|
2023-09-06 13:48:01 +00:00
|
|
|
},
|
2023-10-06 15:42:22 +00:00
|
|
|
};
|