-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
71 lines (65 loc) · 1.75 KB
/
Copy pathtailwind.config.js
File metadata and controls
71 lines (65 loc) · 1.75 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
63
64
65
66
67
68
69
70
71
module.exports = {
purge: ['./components/**/*.{js,ts,jsx,tsx}', './pages/**/*.{js,ts,jsx,tsx}'],
future: {
purgeLayersByDefault: true,
removeDeprecatedGapUtilities: true,
},
theme: {
colors: {
transparent: 'transparent',
white: '#ffffff',
'gray-lightest': '#faf8f8',
'gray-lighter': '#e6e4e4',
'gray-light': '#d2d1d0',
gray: '#c0bebe',
'gray-dark': '#989696',
'gray-darker': '#706f6f',
'gray-darkest': '#4a4848',
black: '#222020',
'brand-light': '#fdd0cd',
brand: '#d63447',
'brand-dark': '#672226',
'cta-light': '#d5f6db',
cta: '#34d672',
'cta-dark': '#26653a',
'info-light': '#e3eff5',
info: '#8bc0d7',
'info-dark': '#455c66',
'warning-light': '#ffeecc',
warning: '#f9bf27',
'warning-dark': '#765b1d',
'success-light': '#e2f4d1',
success: '#7ed046',
'success-dark': '#406328',
'danger-light': '#ffd2cd',
danger: '#f73345',
'danger-dark': '#762425',
},
extend: {
fontFamily: {
head: ['Oswald', 'sans-serif'],
body: ['DM Sans', 'sans-serif'],
mono: ['Source Code Pro', 'monospace'],
},
boxShadow: {
'border-bottom-gray': '0 -2px 0 #e7e5e5 inset',
'border-top-brand': '0 2px 0 #d63447 inset',
},
gridTemplateColumns: {
auto: 'repeat(auto-fill, minmax(2.5rem, 1fr))',
},
rotate: {
'-3': '-3deg',
},
minHeight: {
50: '13rem',
},
},
},
variants: {
borderColor: ['responsive', 'hover', 'focus', 'focus-within'],
backgroundColor: ['responsive', 'hover', 'focus', 'focus-within'],
textColor: ['responsive', 'hover', 'focus'],
},
plugins: [],
}