-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (37 loc) · 820 Bytes
/
tailwind.config.js
File metadata and controls
38 lines (37 loc) · 820 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
34
35
36
37
38
module.exports = {
purge: {
content: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
options: {
safelist: [
'focus:bg-blue-600',
'focus:bg-purple-600',
'focus:bg-green-600',
'focus:bg-indigo-600',
'focus:bg-red-600',
'focus:bg-yellow-600',
'bg-blue-600',
'bg-purple-600',
'bg-green-600',
'bg-indigo-600',
'bg-red-600',
'bg-yellow-600',
'hover:bg-blue-700',
'hover:bg-purple-700',
'hover:bg-green-700',
'hover:bg-indigo-700',
'hover:bg-red-700',
'hover:bg-yellow-700',
],
},
},
darkMode: false, // or 'media' or 'class'
theme: {
extend: {},
},
variants: {
extend: {
opacity: ['disabled'],
},
},
plugins: [],
};