diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2022-07-17 23:29:58 -0400 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2022-07-17 23:29:58 -0400 |
| commit | e36e01917651ccfff64f948c36ee93d310071991 (patch) | |
| tree | 8f7e2f19980474689ef626d0f9906d0f1b197cac /tailwind.config.js | |
| parent | 79242a197b79e7a3dc5a30925ecd7709093a6866 (diff) | |
| parent | 99aee9a7281aa9c5794cc062e41384dc3701906d (diff) | |
Merge pull request #1 from sahinf/tailwind
Tailwind
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', +} |
