-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
75 lines (67 loc) · 1.39 KB
/
tailwind.config.js
File metadata and controls
75 lines (67 loc) · 1.39 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
module.exports = {
mode: 'jit',
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
primary: '#5E38BF',
primaryDark: '#4C3398',
secondary: '#FFD300',
},
spacing: {
"05": "0.125rem",
"1.5": "0.375rem",
13: "3.25rem",
14: "3.5rem",
15: "3.75rem",
18: "4.5rem",
27: "6.75rem",
44: "11rem",
72: "18rem",
73: "18.25rem",
74: "18.5rem",
77: "19.25rem",
78: "19.5rem",
79: "19.75rem",
88: "22rem",
100: "25rem",
128: "32rem",
180: "45rem",
308: "77rem",
320: "80rem",
},
fontSize: {
"md": ".9375rem",
"1.5xl": "1.375rem",
},
backgroundImage: {
'app': "url('/images/app-bg.png')",
},
minWidth: {
15: "3.75rem"
},
maxWidth: {
308: "77rem"
},
boxShadow: {
light: '0 10px 15px -3px rgba(220, 220, 220, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)',
},
transitionDuration: {
2000: "2000ms"
},
borderWidth: {
1: '1px',
3: '3px',
5: '5px',
6: '6px',
7: '7px',
}
},
},
variants: {
backgroundColor: ['hover'],
extend: {},
},
plugins: [],
}