-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
61 lines (60 loc) · 1.22 KB
/
tailwind.config.js
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
let palette = require('./resources/js/palette.js');
module.exports = {
theme: {
extend: {
spacing: {
'72': '18rem',
'80': '20rem',
'84': '21rem',
'96': '24rem',
},
maxWidth: {
'40': '10rem',
'72': '18rem',
'80': '20rem',
'84': '21rem',
'96': '24rem',
},
width: {
'fit': 'fit-content',
},
height: {
'fit': 'fit-content',
},
colors: {
'amazon': palette('FF9900', {
'only': [500, 600]
}),
'apple': palette('9933CC', {
'only': [500, 600]
}),
'barnesnoble': palette('59A364', {
'only': [500, 600]
}),
'bookfusion': palette('00A5E3', {
'only': [500, 600]
}),
'google': palette('039BE5', {
'only': [500, 600]
}),
'mobi-asin': palette('ECC846', {
'only': [500, 600]
}),
'uri': palette('009688', {
'only': [500, 600]
}),
}
},
borderWidth: {
default: '1px',
'0': '0',
'2': '2px',
'3': '3px',
'4': '4px',
'6': '6px',
'8': '8px',
},
},
variants: {},
plugins: []
}