forked from TechNullogy/Simple-Shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
40 lines (39 loc) · 945 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./*.html", "./src/**/*.html"],
theme: {
extend: {
fontFamily: {
vazir: ["Vazirmatn"],
},
boxShadow: {
subtle: "0 24px 40px #797f880d",
hover: "0 14px 24px 10px #7E8AAB1C",
},
colors: {
lynch: "#626E94",
"bondi-blue": "#00ADB5",
amaranth: "#E11D48",
"west-side": "#FF9518",
"black-pearl": "#050F2C",
"link-water": "#f5f8fc",
mystic: "#DEE2EE",
geyser: "#D2D7E4",
"pigeon-post": "#BDC5DD",
"bali-hai": "#7E8AAB",
},
spacing: {
4.5: "1.125rem",
5.5: "1.313rem",
7.5: "1.813rem",
},
backgroundImage: {
"line-pattern": "url(/src/assets/images/home/bg-design4.png)",
},
gridTemplateColumns: {
serviceCard: "35% 50% 15%",
},
},
},
plugins: [],
};