2023-11-03 03:41:08 +01:00
|
|
|
import type { Config } from 'tailwindcss';
|
|
|
|
|
|
|
|
const config: Config = {
|
2023-11-03 00:32:09 +01:00
|
|
|
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
|
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
},
|
2023-11-03 00:34:14 +01:00
|
|
|
plugins: [require("daisyui")],
|
2023-11-03 03:41:08 +01:00
|
|
|
daisyui: {
|
2023-11-16 02:46:22 +01:00
|
|
|
themes: ["light", "dark", "synthwave", "cyberpunk", "valentine", "pastel", "aqua", "coffee", "dim"]
|
2023-11-03 03:41:08 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|
2023-11-03 00:32:09 +01:00
|
|
|
|