-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
77 lines (70 loc) · 2.03 KB
/
tailwind.config.js
File metadata and controls
77 lines (70 loc) · 2.03 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
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}", "./src/**/*.{vue,js,ts,jsx,tsx}"],
darkMode: 'class',
important: true,
theme: {
screens: {
xs: "540px",
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
lg_992: '992px',
},
fontFamily: {
'poppins': ['"Poppins", sans-serif'],
},
container: {
center: true,
padding: {
DEFAULT: '12px',
sm: '1rem',
lg: '45px',
xl: '5rem',
'2xl': '13rem',
},
},
extend: {
colors: {
'dark': '#3c4858',
'black': '#161c2d',
'dark-footer': '#192132',
},
boxShadow: {
sm: '0 2px 4px 0 rgb(60 72 88 / 0.15)',
DEFAULT: '0 0 3px rgb(60 72 88 / 0.15)',
md: '0 5px 13px rgb(60 72 88 / 0.20)',
lg: '0 10px 25px -3px rgb(60 72 88 / 0.15)',
xl: '0 20px 25px -5px rgb(60 72 88 / 0.1), 0 8px 10px -6px rgb(60 72 88 / 0.1)',
'2xl': '0 25px 50px -12px rgb(60 72 88 / 0.25)',
inner: 'inset 0 2px 4px 0 rgb(60 72 88 / 0.05)',
testi: '2px 2px 2px -1px rgb(60 72 88 / 0.15)',
},
spacing: {
0.75: '0.1875rem',
3.25: '0.8125rem'
},
maxWidth: ({
theme,
breakpoints
}) => ({
'1200': '71.25rem',
'992': '60rem',
'768': '45rem',
}),
zIndex: {
1: '1',
2: '2',
3: '3',
999: '999',
},
},
},
plugins: [
require("@tailwindcss/forms")({
strategy: 'class', // only generate classes
}),
],
}