-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
80 lines (74 loc) · 2.46 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
require('tailwindcss/defaultTheme');
const colors = require('tailwindcss/colors')
module.exports = {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./vendor/laravel/jetstream/**/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
"./resources/**/*.blade.php",
"./resources/**/*.js",
"./resources/**/*.vue",
"./node_modules/flowbite/**/*.js"
],
theme: {
fontFamily: {
'sans': ['Effra' ],
},
colors: {
...colors,
},
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1200px",
"2xl": "1200px"
},
maxHeight: {
"860-px": "860px",
},
container: {
center: true,
padding: "2rem"
},
boxShadow: {
sm: "0 1px 2px 0 rgba(0, 0, 0, 0.05)",
DEFAULT: "0px 2px 4px rgba(148, 163, 184, 0.05), 0px 6px 24px rgba(235, 238, 251, 0.4)",
md: "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)",
lg: "0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)",
xl: "0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)",
"2xl": "0 25px 50px -12px rgba(0, 0, 0, 0.25)",
"3xl": "0 35px 60px -15px rgba(0, 0, 0, 0.3)",
inner: "inset 0 2px 4px 0 rgba(0, 0, 0, 0.06)",
none: "none"
},
extend: {
colors: {
white: "#ffffff",
body: "#1e293b",
"blueGray-50": "#f8fafc",
"blueGray-100": "#f1f5f9",
"blueGray-200": "#e2e8f0",
"blueGray-300": "#cbd5e1",
"blueGray-400": "#94a3b8",
"blueGray-500": "#64748b",
"blueGray-600": "#475569",
"blueGray-700": "#334155",
"blueGray-800": "#1e293b",
"blueGray-900": "#0f172a",
'theme-color': '#361CC1',
'theme-color-2': '#FE7A7B'
},
inset: {
'100': '100%',
},
padding: {
'120': '120px',
},
}
},
plugins: [require('@tailwindcss/forms'),
require('flowbite/plugin'),
require('@tailwindcss/typography')],
};