-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
82 lines (82 loc) · 1.55 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
module.exports = {
theme: {
extend: {
fontFamily: {
body: ['SourceSansPro'],
},
maxWidth: {
'screen': '1146px',
'none': 'none',
},
minWidth: {
'site': '320px',
},
screens: {
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1146px',
},
inset: {
'100': '100%',
},
lineHeight: {
cavernous: '3rem',
},
spacing: {
72: '18rem',
},
},
// Do not extend these
colors: {
'black': '#131316',
'almost-black': '#34373F',
'blue-200': '#C3E1FF',
'blue-gray': '#839BC9',
'blue': '#1982F4',
'blue-500': '#3966FE',
'dark-blue': '#3158A5',
'gray-100': '#F8F7F3',
'gray-200': '#F6F9FD',
'gray-300': '#F6F6F6',
'gray-500': '#7F818B',
'gray-600': '#737680',
'gray-700': '#4A5568',
'gray-dark': '#34373F',
'gray': '#8B8C97',
'pink': '#E51A66',
'white': '#ffffff',
'transparent': 'transparent',
'teal': '#12bfdf',
},
fontSize: {
xl: '48px',
larger: '40px',
lg: '32px',
md: '26px',
bigger: '22px',
big: '18px',
base: '17px',
sm: '15px',
},
},
variants: [
'active',
'disabled',
'even',
'first',
'focus-within',
'focus',
'group-hover',
'hover',
'last',
'odd',
'responsive',
'visited',
],
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true
},
plugins: []
}