1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-21 13:59:36 +02:00
AdventureLog/tailwind.config.js

12 lines
297 B
JavaScript
Raw Normal View History

/** @type {import('tailwindcss').Config} */
export default {
2024-04-02 22:02:20 +00:00
content: ["./src/**/*.{html,js,svelte,ts}"],
theme: {
2024-04-02 22:02:20 +00:00
extend: {},
},
plugins: [require("@tailwindcss/typography"), require("daisyui")],
daisyui: {
themes: ["light", "dark", "night", "retro", "forest", "nord"],
},
2024-04-02 22:02:20 +00:00
};