-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.frontend.js
More file actions
62 lines (53 loc) · 1.38 KB
/
tailwind.frontend.js
File metadata and controls
62 lines (53 loc) · 1.38 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
module.exports = {
purge: ['./resources/views/**/*.blade.php', '!./resources/views/backend'],
theme: {
extend: {
colors: {
blue: {
default: '#007CFF',
},
indigo: {
light: '#4219E5',
default: '#2B00D4',
},
green: {
lighter: '#00CFBE',
default: '#266963',
darker: '#003B36',
darkest: '#042825',
},
red: {
default: '#C81313',
},
yellow: {
default: '#FFDB69',
},
},
zIndex: {
'-1': '-1',
},
minHeight: {
'72': '18rem',
'84': '21rem',
'96': '24rem',
},
spacing: {
'1/2px': '0.5px',
'3px': '3px',
'72': '18rem',
'84': '21rem',
'96': '24rem',
'108': '27rem',
'120': '30rem',
},
borderWidth: {
'1/2px': '0.5px',
},
screens: {
xl: { min: '1920px' },
},
},
},
variants: {},
plugins: [],
};