website-2/tailwind.config.js
Nick Bland 2a13698538 Add in Generic Navbar
+ Add DaisyUI and themes used
+ Add in generic navbar + Theming
+ Add in theme switcher (Firefox 120+ required, all others fine)

- Removed some boilerplate svelte stuff
2024-02-26 14:20:32 +10:00

12 lines
243 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{html,js,svelte,ts}"],
theme: {
extend: {},
},
plugins: [require("daisyui")],
daisyui: {
themes: ["night", "winter"],
},
};