aboutsummaryrefslogtreecommitdiff
path: root/tailwind.config.js
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2022-07-17 23:29:58 -0400
committerFurkan Sahin <furkan-dev@proton.me>2022-07-17 23:29:58 -0400
commite36e01917651ccfff64f948c36ee93d310071991 (patch)
tree8f7e2f19980474689ef626d0f9906d0f1b197cac /tailwind.config.js
parent79242a197b79e7a3dc5a30925ecd7709093a6866 (diff)
parent99aee9a7281aa9c5794cc062e41384dc3701906d (diff)
Merge pull request #1 from sahinf/tailwind
Tailwind
Diffstat (limited to 'tailwind.config.js')
-rw-r--r--tailwind.config.js17
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',
+}