diff options
Diffstat (limited to 'tailwind.config.js')
| -rw-r--r-- | tailwind.config.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..764d3c2 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,17 @@ +module.exports = { + content: ['./public/index.html', './src/**/*.svelte'], + theme: { + extend: {}, + }, + plugins: [ + require('daisyui'), + ], + + // Daisyui had some theme turned on by default + daisyui: { + themes: ["light", "dark", "cupcake", "bumblebee", "emerald", "corporate", "synthwave", "retro", "cyberpunk", "valentine", "halloween", "garden", "forest", "aqua", "lofi", "pastel", "fantasy", "wireframe", "black", "luxury", "dracula", "cmyk", "autumn", "business", "acid", "lemonade", "night", "coffee", "winter"], + // themes: [], + }, + + darkMode: 'class', +} |
