-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
50 lines (50 loc) · 847 Bytes
/
tailwind.config.js
File metadata and controls
50 lines (50 loc) · 847 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 = {
theme: {
extend: {
colors: {
skeeg: {
'400': '#336699',
'500': '#5276a5',
'600': '#709fdd'
}
},
padding: {
'42': '42px'
},
margin: {
'42': '42px',
'10': '10px'
}
},
fontFamily: {
'skeeg': '\'Luckiest Guy\',display'
},
fontSize: {
'logo': '69px',
'size-84': '84px',
'size-42': '42px',
'size-36': '36px',
'size-30': '30px',
'size-24': '24px',
'size-22': '22px',
'size-18': '18px',
'size-16': '16px'
},
container: {
center: true,
padding: '42px'
},
screens: {
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1200px'
}
},
variants: {
padding: [ 'responsive', 'first', 'last', 'focus' ],
margin: [ 'responsive', 'first', 'last' ],
borderWidth: [ 'responsive', 'first', 'last' ]
},
plugins: []
};