2024-01-21 14:54:48 +10:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
2024-04-08 23:04:31 +10:00
|
|
|
module.exports = {
|
2024-02-26 14:20:32 +10:00
|
|
|
content: ["./index.html", "./src/**/*.{html,js,svelte,ts}"],
|
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
},
|
|
|
|
plugins: [require("daisyui")],
|
|
|
|
daisyui: {
|
|
|
|
themes: ["night", "winter"],
|
|
|
|
},
|
2024-04-08 23:04:31 +10:00
|
|
|
darkMode: "selector",
|
2024-01-21 14:54:48 +10:00
|
|
|
};
|