website-2/tailwind.config.js
Nick Bland f48839a5b4
Quick aesthetic updates
~ Change light theme to something new
~ Make navbar text a bit bigger
2024-04-12 17:28:38 +10:00

13 lines
267 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{html,js,svelte,ts}"],
theme: {
extend: {},
},
plugins: [require("daisyui")],
daisyui: {
themes: ["night", "acid"],
},
darkMode: "selector",
};