-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
56 lines (54 loc) · 1.44 KB
/
tailwind.config.js
File metadata and controls
56 lines (54 loc) · 1.44 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
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./vendor/laravel/jetstream/**/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
],
safelist: [
'bg-red-700',
'bg-orange-700',
'bg-amber-700',
'bg-yellow-700',
'bg-lime-700',
'bg-green-700',
'bg-emerald-700',
'bg-teal-700',
'bg-cyan-700',
'bg-sky-700',
'bg-blue-700',
'bg-indigo-700',
'bg-violet-700',
'bg-purple-700',
'bg-fuchsia-700',
'bg-pink-700',
'bg-rose-700',
'text-red-700',
'text-orange-700',
'text-amber-700',
'text-yellow-700',
'text-lime-700',
'text-green-700',
'text-emerald-700',
'text-teal-700',
'text-cyan-700',
'text-sky-700',
'text-blue-700',
'text-indigo-700',
'text-violet-700',
'text-purple-700',
'text-fuchsia-700',
'text-pink-700',
'text-rose-700',
],
theme: {
fontFamily: {
display: ['"Quicksand"', 'sans-serif'],
body: ['"IBM Plex Sans"', 'serif'],
},
extend: {
},
},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography')],
};