Newer
Older
// Note that any adjustments to this file must be reflected in custom.scss and tailwind.css
prefix: 'tw-',
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,

Richard Blechinger
committed
},
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
theme: {
screens: {
'sm': '576px',
'md': '768px',
'lg': '992px',
'xl': '1200px',
},
cursor: {
auto: 'auto',
default: 'default',
pointer: 'pointer',
wait: 'wait',
text: 'text',
move: 'move',
'not-allowed': 'not-allowed',
help: 'help'
},
extend: {
colors: {
aura: {
purple: '#5029c4'
},
gray: {
'50': '#f9fafb',
'100': '#f4f5f7',
'200': '#e5e7eb',
'300': '#d2d6dc',
'400': '#9fa6b2',
'500': '#6b7280',
'600': '#4b5563',
'700': '#374151',
'800': '#252f3f',
'900': '#161e2e',
},
}
}