lysine commited on
Commit
66dcdd2
·
1 Parent(s): 6105534

Update color theme

Browse files
Files changed (1) hide show
  1. tailwind.config.js +30 -0
tailwind.config.js CHANGED
@@ -4,5 +4,35 @@ export default {
4
  theme: {
5
  extend: {},
6
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  plugins: [require('daisyui')],
8
  };
 
4
  theme: {
5
  extend: {},
6
  },
7
+ daisyui: {
8
+ themes: [
9
+ {
10
+ mytheme: {
11
+ primary: '#0891b2',
12
+ secondary: '#f59e0b',
13
+ accent: '#a78bfa',
14
+ neutral: '#cffafe',
15
+ 'base-100': '#f3f4f6',
16
+ info: '#4daecb',
17
+ success: '#21a172',
18
+ warning: '#ea9739',
19
+ error: '#fb181c',
20
+ },
21
+ },
22
+ {
23
+ dark: {
24
+ primary: '#0891b2',
25
+ secondary: '#f59e0b',
26
+ accent: '#a78bfa',
27
+ neutral: '#1f2937',
28
+ 'base-100': '#111827',
29
+ info: '#4daecb',
30
+ success: '#21a172',
31
+ warning: '#ea9739',
32
+ error: '#fb181c',
33
+ },
34
+ },
35
+ ],
36
+ },
37
  plugins: [require('daisyui')],
38
  };