-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
50 lines (46 loc) · 1.24 KB
/
tailwind.config.js
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
const defaultTheme = require('tailwindcss/defaultTheme');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
],
theme: {
extend: {
borderWidth: {
'12': '12px',
},
zIndex: {
'60': '60',
'100': '100',
'200': '200',
},
maxHeight: {
'screen-1/2': '50vh',
'screen-3/4': '75vh',
},
sepia: {
50: '.50',
}
},
},
safelist: [
{
pattern: /bg-(gray|green|blue|orange|indigo|red|yellow)-(50|100|400|600|800)/,
variants: ['hover'],
},
{
pattern: /border-(gray|green|blue|orange|indigo|red)-(200)/,
},
{
pattern: /text-(gray|green|blue|orange|indigo|red)-(800)/,
},
'fill-black',
'bg-green-600',
'shadow-md',
'shadow-green-600',
'bg-yellow-400',
],
plugins: [require('@tailwindcss/forms')],
};