-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
50 lines (44 loc) · 1014 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
50 lines (44 loc) · 1014 Bytes
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
40
41
42
43
44
45
46
47
48
49
50
module.exports = {
content: ['./src/**/*.{ts,tsx}'],
theme: {
extend: {
minHeight: {
96: '384px',
},
},
},
plugins: [require('daisyui')],
daisyui: {
styled: true,
base: true,
utils: true,
logs: false,
rtl: false,
themes: [
{
javadrip: {
primary: '#55493b',
'primary-content': '#FFFFFF',
secondary: '#ffffff',
'secondary-content': '#000000',
accent: '#F8E399',
'accent-content': '#000000',
'info-content': '#E4E4E4',
'base-300': '#372f26',
'base-200': '#b69066',
},
uniform: {
primary: '#0052ED',
'primary-content': '#FFFFFF',
secondary: '#ffffff',
'secondary-content': '#000000',
accent: '#DF0000',
'accent-content': '#FFFFFF',
'info-content': '#99C6FF',
'base-200': '#6b8ff0',
'base-300': '#001242',
},
},
],
},
};