-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
69 lines (68 loc) · 1.91 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
const defaultTheme = require('tailwindcss/defaultTheme')
import common from './tailwind.common.js'
export default {
plugins: [require("daisyui")],
daisyui: {
themes: ["light"],
},
content: [
"./resources/**/*.blade.php",
'./app/Filament/**/*.php',
'./resources/views/filament/**/*.blade.php',
'./vendor/filament/**/*.blade.php',
"./resources/**/*.js",
"./resources/**/*.vue",
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
],
darkMode: 'class',
theme: {
fontSize: {
xxs: '0.65rem',
xs: '0.75rem',
sm: '0.9rem',
base: '1rem',
lg: '1.125rem',
xl: '1.25rem',
'2xl': '1.5rem',
'3xl': '1.75rem',
'4xl': '2.5rem',
'5xl': '3rem',
'6xl': '3.43rem',
'7xl': '4.5rem',
},
extend: {
fontFamily: {
'sans': ['"Poppins"', ...defaultTheme.fontFamily.sans],
},
colors: {
primary: common.colors.primary,
secondary: common.colors.secondary,
},
lineHeight: {
'xxs': '1.1',
'xs': '1.2',
},
height: {
'180': '45rem',
},
dropShadow: {
'3xl': '0 35px 35px rgba(0, 0, 0, 0.25)',
'4xl': [
'0 35px 35px rgba(0, 0, 0, 0.25)',
'0 45px 65px rgba(0, 0, 0, 0.15)'
]
},
blur: {
'4xl': '75px',
},
listStyleImage: {
checkmark: 'url("/images/check.svg") ',
},
scale: {
'101': '1.01',
'102': '1.02',
'103': '1.03',
}
},
}
}