-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtailwind.config.js
144 lines (143 loc) · 3.79 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
module.exports = {
purge: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
animation: {
navbar: "navbar 0.5s ease-out",
blob: "blob 7s infinite",
},
spacing: {
18: "4.4rem",
22: "5.8rem",
26: "6.6rem",
38: "9.8rem",
110: "20rem",
115: "21rem",
120: "30rem",
130: "40rem",
140: "45rem",
145: "48rem",
150: "60rem",
160: "67.5rem",
},
keyframes: {
navbar: {
"0%": { transform: "translateX(20%)" },
"100%": { transform: "translateX(0%)" },
},
blob: {
"0%": {
transform:
"translate(0px, 0px) scale(1)",
},
"33%": {
transform:
"translate(30px, -50px) scale(1.1)",
},
"66%": {
transform:
"translate(-20px, 20px) scale(0.9)",
},
"100%": {
transform:
"tranlate(0px, 0px) scale(1)",
},
},
},
colors: {
'blue1': '#1386cc',
'blue2': '#0C72B0F2',
gray: {
1000: "#0B0B0B",
1100: "#252525",
1200: "#121212",
1300: "#808080",
1400: "#353535",
1500: "#FFFFFF",
},
lblue: "#C2FFF4",
},
fontFamily: {
righteous: ["Righteous", "cursive"],
rajdhani: ["Rajdhani", "sans-serif"],
nunito: ["Nunito", "sans-serif"],
roboto: ["Roboto", "monospace"],
poppins: ["Poppins", "sans-serif"],
},
boxShadow: {
button_custom:
"4px 4px 8px rgba(255, 255, 255, 0.25)",
nav_custom:
"30px 0px 30px 30px rgba(255, 255, 255, 0.25)",
login_custom:
"0px 0px 10px 5px rgba(0, 0, 0, 0.25);",
},
backgroundImage: {
"footer-bg":
"url('../images/footer_11zon.webp')",
"body-bg":
"url('../images/bg_11zon.webp')",
"bg-a1":
"url('../images/project/a1_11zon.webp')",
"bg-a2":
"url('../images/project/a2_11zon.webp')",
"bg-a3":
"url('../images/project/a3_11zon.webp')",
"bg-a4":
"url('../images/project/a4_11zon.webp')",
"bg-a5":
"url('../images/project/a5_11zon.webp')",
"bg-a6":
"url('../images/project/a6_11zon.webp')",
"bg-a7":
"url('../images/project/a7_11zon.webp')",
"bg-a8":
"url('../images/project/a8_11zon.webp')",
"bg-a9":
"url('../images/project/a9_11zon.webp')",
"bg-a10":
"url('../images/project/a10_11zon.webp')",
"bg-a11":
"url('../images/project/a11_11zon.webp')",
"bg-a12":
"url('../images/project/a12_11zon.webp')",
"bg-a13":
"url('../images/project/a13_11zon.webp')",
"bg-a14":
"url('../images/project/a14_11zon.webp')",
"bg-alumni": "url('../images/team.jpg')",
"bg-team": "url('../images/alumni.jpg')",
"about-bg":
"url('../images/aboutbg_11zon.webp')",
"blog-bg":
"url('../images/blog/blog.jpg')",
"ee-bg":
"url('../images/blog/bee/ee.jpg')",
"algo-bg":
"url('../images/blog/algo/5.webp')",
"banner-bg":
"url('../images/banner-bg.webp')",
"bg-project":
"url('../images/project/project.jpeg')",
},
fontSize: {
base: ["50px", "75px"],
normal: ["16px", "24px"],
},
screens: {
custom: "900px",
xsm: "300px",
},
},
},
variants: {
extend: {
display: ["group-hover"],
},
},
plugins: [],
};