aboutsummaryrefslogtreecommitdiff
path: root/tailwind.config.cjs
blob: bfe8a76e99b2a3b97dfced6f2efb4ca0584a96dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module.exports = {
  content: ['./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',
}