-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathtailwind.config.js
More file actions
44 lines (43 loc) · 1.08 KB
/
tailwind.config.js
File metadata and controls
44 lines (43 loc) · 1.08 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
import colors from 'tailwindcss/colors'
import forms from '@tailwindcss/forms'
import typography from '@tailwindcss/typography'
export default {
content: [
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
'./vendor/filament/**/*.blade.php',
'./app/Filament/**/*.php',
],
darkMode: 'class',
theme: {
extend: {
spacing: {
'22': '5.5rem',
'35': '8.75rem',
},
fontSize: {
'xss': '.6875rem',
'xxs': '.65rem',
},
bottom: {
'18': '4.5rem',
},
colors: {
slate: {
...colors.slate,
850: '#152033',
},
gray: colors.slate,
danger: colors.rose,
primary: colors.blue,
success: colors.emerald,
warning: colors.orange,
}
},
},
plugins: [
forms,
typography,
],
}