-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtailwind.config.js
43 lines (41 loc) · 1015 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/Resources/**/*.blade.php", "./src/Resources/**/*.js"],
theme: {
container: {
center: true,
screens: {
"2xl": "1440px",
},
padding: {
DEFAULT: "90px",
},
},
screens: {
sm: "525px",
md: "768px",
lg: "1024px",
xl: "1240px",
"2xl": "1440px",
1180: "1180px",
1060: "1060px",
991: "991px",
868: "868px",
},
extend: {
spacing: {
'15': '3.75rem',
},
colors: {
navyBlue: "#060C3B",
lightOrange: "#F6F2EB",
},
fontFamily: {
poppins: ["Poppins"],
dmserif: ["DM Serif Display"],
},
}
},
plugins: [],
darkMode: 'class',
};