-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
46 lines (46 loc) · 1.17 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js,jsx}"],
theme: {
extend: {
colors: {
theme: "#FF5757",
hover: "#fc0404",
text: "#5c5757",
border: "#bcbcbc",
bg: "#f3f3f3",
discount: "#54BD8A",
pagination: "#4CAF50",
filter: "#a0a0a0",
filterFloat: "rgba(4, 4, 4, 0.5)",
star: "#5ba727",
reviews: "#3595ff",
aboutIcon: "#ac8e48",
},
boxShadow: {
cities: "0 4px 8px rgba(0, 0, 0, 0.1)",
offers: "4px 8px 8px 0 rgba(0, 0, 0, 0.25)",
restaurant: "0px 0px 10px 0px rgba(0, 0, 0, 0.2)",
review: "0px 0px 20px 0px rgba(0, 0, 0, 0.2)",
booking: "0 0 28px -1px rgba(0, 0, 0, .15)",
lunchDinner: "0 0 14px 0 rgba(0, 0, 0, .16)",
},
scale: {
101: "1.01",
},
},
},
plugins: [
function ({ addUtilities }) {
addUtilities({
".no-scrollbar": {
"-ms-overflow-style": "none",
"scrollbar-width": "none",
},
".no-scrollbar::-webkit-scrollbar": {
display: "none",
},
});
},
],
};