forked from fordiquez/laravel-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
92 lines (89 loc) · 2.58 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
import defaultTheme from 'tailwindcss/defaultTheme'
import forms from '@tailwindcss/forms'
import typography from '@tailwindcss/typography'
import colors from 'tailwindcss/colors'
import aspectRatio from '@tailwindcss/aspect-ratio'
import tailwindScrollbar from 'tailwind-scrollbar'
import flowbitePlugin from 'flowbite/plugin'
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./resources/js/**/*.vue',
'./node_modules/flowbite/**/*.js',
'./app/Filament/**/*.php',
'./resources/views/filament/**/*.blade.php',
'./vendor/filament/**/*.blade.php'
],
theme: {
letterSpacing: {
tightest: '-.075em',
tighter: '-.05em',
tight: '-.025em',
normal: '0',
wide: '.05em',
wider: '.15em',
widest: '.25em'
},
extend: {
fontFamily: {
sans: ['Inter', ...defaultTheme.fontFamily.sans]
},
rotate: {
'-1': '-1deg',
'-2': '-2deg',
'-3': '-3deg',
1: '1',
2: '2deg',
3: '3deg'
},
borderRadius: {
xl: '0.8rem',
xxl: '1rem'
},
height: {
'1/2': '0.125rem',
'2/3': '0.1875rem'
},
maxWidth: {
'8xl': '1440px',
'9xl': '1600px'
},
maxHeight: {
16: '16rem',
20: '20rem',
24: '24rem',
32: '32rem'
},
inset: {
'1/2': '50%'
},
width: {
96: '24rem',
104: '26rem',
128: '32rem'
},
gridTemplateRows: {
'[auto,auto,1fr]': 'auto auto 1fr'
},
transitionDelay: {
450: '450ms'
},
colors: {
danger: colors.rose,
primary: colors.purple,
success: colors.green,
warning: colors.yellow
}
},
screens: {
'2xs': '360px',
xs: '480px',
...defaultTheme.screens
}
},
plugins: [forms, typography, aspectRatio, flowbitePlugin, tailwindScrollbar]
}