-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (33 loc) · 890 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (33 loc) · 890 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
/* eslint-disable quote-props */
module.exports = {
mode: 'jit',
preflight: false,
content: [
'./index.html',
'./src/**/*.tsx',
],
safelist: [
{ pattern: /text-*./ },
{ pattern: /font-*./ },
{ pattern: /bg-*./ },
],
theme: {
colors: {
'transparent': 'transparent',
'label-primary': 'var(--color-label-primary)',
'label-secondary': 'var(--color-label-secondary)',
'separator': 'var(--color-separator)',
'overlay': 'var(--color-overlay)',
'black': 'var(--color-black)',
'white': 'var(--color-white)',
'red': 'var(--color-red)',
'orange': 'var(--color-orange)',
'yellow': 'var(--color-yellow)',
'green': 'var(--color-green)',
'blue': 'var(--color-blue)',
'gray': 'var(--color-gray)',
'gray-2': 'var(--color-gray-2)',
'gray-6': 'var(--color-gray-6)',
},
},
};