forked from bergerjohannes/buildorderguide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
37 lines (37 loc) · 922 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
37 lines (37 loc) · 922 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
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
'main': {
dark: '#134e4a',
light: '#64748b'
},
'primary': {
dark: '#0f172a',
light: '#2dd4bf'
},
'secondary': {
dark: '#cbd5e1',
light: '#f1f5f9'
},
'danger': {
dark: '#ef4444',
light: '#fb7185'
},
'highlight': {
dark: '#f59e0b',
light: '#fde047'
}
},
minWidth: {
'sm': '2.5rem',
'md': '8rem',
'lg': '30rem'
},
},
},
plugins: []
}