This repository has been archived by the owner on Dec 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
177 lines (177 loc) · 4.55 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
module.exports = {
content: [
"./pages/*.{html,js,jsx,ts,tsx}",
"./sections/*.{html,js,jsx,ts,tsx}",
"./components/**/**/*.{html,js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
main: {
secondary: "#20222A",
primary: "#0A0A0A",
teal: "#00A99D",
lightBg: "#151823",
light_white: "rgba(255, 255, 255, 0.5)",
light_white_eight: "rgba(255, 255, 255, 0.8)",
whiteVar1: "#D9D9D9",
greenOpt: {
200: "rgba(0, 169, 157, 0.2)",
},
blueOpt: {
200: "rgba(114, 137, 218, 0.2)",
1000: "#7289DA",
},
black: {
extraLight: "rgba(0,0,0,0)",
400: "rgba(0,0,0,0.4)",
700: "rgb(10,10,10,0.7)",
dark: "rgba(0,0,0,1)",
},
white: {
500: "rgba(255, 255, 255, 0.05)",
700: "#A1A1AA",
},
lightTeal: "#38D8CC",
filter: "#D4D4D4",
filterDropDown: "#E0E0E0",
},
},
boxShadow: {
"3xl": "0 2px 38px -1px rgba(0, 0, 0, 0.3)",
},
animation: {
leftIn: "leftIn 0.35s ease-out forwards",
leftOut: "leftOut 0.3s ease-in forwards",
rightIn: "rightIn 0.35s ease-out forwards",
rightOut: "rightOut 0.3s ease-in forwards",
blink: "blink 3s ease-in-out infinite alternate",
fadeOut: "fadeOut 0.15s ease-in forwards",
show: "show 1s ease forwards",
hide: "hide 0.5s ease-in forwards",
spin: "spin 2s linear infinite",
},
keyframes: {
leftIn: {
"0%": {
transform: "translate(195px, 81px)",
opacity: 0,
},
"100%": {
transform: "translate(0, 0)",
opacity: 1,
},
},
leftOut: {
"0%": {
transform: "translate(0, 0)",
opacity: 1,
},
"99%": {
opacity: 0,
transform: "translate(-135px, -69px)",
},
"100%": {
opacity: 0,
transform: "translate(-145px, 80px)",
},
},
rightIn: {
"0%": {
transform: "translate(-145px, 80px)",
opacity: 0,
},
"100%": {
transform: "translate(0, 0)",
opacity: 1,
},
},
rightOut: {
"0%": {
transform: "translate(0, 0)",
opacity: 1,
},
"99%": {
opacity: 0,
transform: " translate(138px, -66px)",
},
"100%": {
opacity: 0,
transform: "translate(195px, 81px)",
},
},
blink: {
"0%": {
filter: "invert(0)",
},
"100%": {
filter: "invert(1)",
},
},
fadeOut: {
"0%": {
opacity: "0",
},
"90%": {
transform: "scale(1.05)",
opacity: "0.8",
},
"100%": {
transform: "scale(1)",
opacity: "1",
},
},
show: {
"0%": {
opacity: "0",
height: "0",
},
"100%": {
opacity: "1",
height: "auto",
},
},
hide: {
"0%": {
opacity: "1",
},
"100%": {
opacity: "0",
},
},
spin: {
"0%": { transform: "rotate(0deg)" },
"100%": { transform: "rotate(360deg)" },
},
},
fontFamily: {
miligrambold: ["MILIGRAM BOLD"],
miligramLight: ["MILIGRAM LIGHT"],
miligramMedium: ["MILIGRAM MEDIUM"],
battambangMedium: ["BATTAMBANG MEDIUM"],
battambangBold: ["BATTAMBANG BOLD"],
miligramText400: ["MILIGRAM TEXT NORMAL"],
miligramTextBook: ["MILIGRAM TEXT BOOK"],
miligramTextMedium: ["MILIGRAM TEXT MEDIUM"],
miligramTextItalic: ["MILIGRAM TEXT ITALIC"],
miligramTextBold: ["MILIGRAM TEXT BOLD"],
miligramTextRegular: ["MILIGRAM TEXT REGULAR"],
miligramTextBookItalic: ["MILIGRAM TEXT BOOK ITALIC"],
miligramThin: ["MILIGRAM THIN"],
},
boxShadow: {
client: "-1px 0px 73px -20px #00a99d",
},
},
screens: {
xsm: "300px",
msm: "340px",
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
xxl: "1536px",
},
},
plugins: [require("autoprefixer")],
};