-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
53 lines (45 loc) · 1.01 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./Resources/**/*.blade.php", "./Resources/**/*.js", "./Resources/js/**/*.jsx"],
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: {
colors: {
navyBlue: "#060C3B",
lightOrange: "#F6F2EB",
darkGreen: '#40994A',
darkBlue: '#0044F2',
darkPink: '#F85156',
},
fontFamily: {
poppins: ["Poppins"],
dmserif: ["DM Serif Display"],
},
}
},
plugins: [],
safelist: [
{
pattern: /icon-/,
}
]
}