forked from shopperlabs/shopper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
70 lines (69 loc) · 1.66 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
const defaultTheme = require('tailwindcss/defaultTheme')
const colors = require('tailwindcss/colors')
module.exports = {
darkMode: 'class',
content: [
'./resources/js/**/*.js',
'./resources/views/**/*.blade.php',
'./src/**/*.php',
'./vendor/rappasoft/laravel-livewire-tables/resources/views/**/*.blade.php',
'./vendor/wire-elements/modal/resources/views/*.blade.php',
'./vendor/wireui/wireui/resources/**/*.blade.php',
'./vendor/wireui/wireui/ts/**/*.ts',
'./vendor/wireui/wireui/src/View/**/*.php',
'./vendor/filament/**/*.blade.php',
],
safelist: [
'md:max-w-xl',
'sm:max-w-2xl',
'sm:max-w-3xl',
'sm:max-w-4xl',
'lg:max-w-2xl',
'lg:max-w-3xl',
'xl:max-w-4xl',
],
theme: {
extend: {
colors: {
primary: colors.blue,
indigo: colors.blue,
secondary: colors.slate,
orange: colors.orange,
positive: colors.emerald,
success: colors.emerald,
warning: colors.amber,
negative: colors.red,
danger: colors.red,
info: colors.sky,
},
inset: {
'-0.5': '-0.125rem',
},
spacing: {
44: '11rem',
18: '4.5rem',
95: '23.75rem',
125: '31.25rem',
140: '35rem'
},
opacity: {
15: '.15',
30: '0.3',
40: '0.4',
},
minHeight: {
'(screen-content)': 'calc(100vh - 9.625rem)',
},
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans]
},
maxWidth: {
'8xl': '88rem',
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
]
}