forked from joshuaiz/air
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
45 lines (42 loc) · 1.39 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
module.exports = {
theme: {
extend: {
container: {
// fixes non-centered .container class default
center: true
},
// Adds additional widths to max-w-*
maxWidth: {
'7xl': '80rem',
'8xl': '88rem',
'9xl': '96rem'
},
colors: {
// studio.bio colors; remove and/or add your own
'sb-blue': '#0056ac',
'sb-light-blue': '#99bbde',
'sb-dark-blue': '#004466',
'sb-midnight': '#001c3a',
'sb-purple': '#CC0099',
'sb-orange': '#F05A28',
'sb-dark-orange': '#B4441E',
'sb-red': '#F23E2F',
'sb-black': '#111111',
'sb-grey': '#808080'
},
screens: {
// additional 'below' media queries
'below-sm': { max: '639px' },
// => @media (max-width: 639px) { ... }
'below-md': { max: '767px' },
// => @media (max-width: 767px) { ... }
'below-lg': { max: '1023px' },
// => @media (max-width: 1023px) { ... }
'below-xl': { max: '1279px' }
// => @media (max-width: 1279px) { ... }
}
}
},
variants: {},
plugins: []
}