1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-25 15:59:38 +02:00
AdventureLog/frontend/tailwind.config.js
2024-07-08 11:44:39 -04:00

11 lines
305 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {}
},
plugins: [require('@tailwindcss/typography'), require('daisyui')],
daisyui: {
themes: ['light', 'dark', 'night', 'retro', 'forest', 'aqua', 'garden', 'emerald']
}
};