diff options
author | Matthew Lemon <y@yulqen.org> | 2024-08-29 15:00:37 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-08-29 15:00:37 +0100 |
commit | d6d688eed9b9532ff79eb4c4ac8fb09b6e1ae2c8 (patch) | |
tree | 9304a356bc1ce03e60b9cc932c03e5daf9726da7 /tailwind.config.js | |
parent | afc33046439e4cec0a5de7c87cb5dc8e23606689 (diff) |
Started journey to move to Tailwind
Diffstat (limited to 'tailwind.config.js')
-rw-r--r-- | tailwind.config.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tailwind.config.js b/tailwind.config.js new file mode 100644 index 0000000..cec0756 --- /dev/null +++ b/tailwind.config.js @@ -0,0 +1,18 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: [ + './templates/**/*.html', + './core/templates/**/*.html', + './engagements/templates/**/*.html', + './instruments/templates/**/*.html', + './myuser/templates/**/*.html', + ], + theme: { + extend: {}, + }, + plugins: [require("daisyui")], + daisyui: { + themes: ["light", "dark", "cupcake"], + }, +} + |