File size: 856 Bytes
ee7d090
 
 
 
 
 
66dcdd2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ee7d090
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/** @type {import('tailwindcss').Config} */
export default {
  content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
  theme: {
    extend: {},
  },
  daisyui: {
    themes: [
      {
        mytheme: {
          primary: '#0891b2',
          secondary: '#f59e0b',
          accent: '#a78bfa',
          neutral: '#cffafe',
          'base-100': '#f3f4f6',
          info: '#4daecb',
          success: '#21a172',
          warning: '#ea9739',
          error: '#fb181c',
        },
      },
      {
        dark: {
          primary: '#0891b2',
          secondary: '#f59e0b',
          accent: '#a78bfa',
          neutral: '#1f2937',
          'base-100': '#111827',
          info: '#4daecb',
          success: '#21a172',
          warning: '#ea9739',
          error: '#fb181c',
        },
      },
    ],
  },
  plugins: [require('daisyui')],
};