-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
59 lines (58 loc) · 1.31 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
const config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
colors: {
"custom-dark-gray": "#cbcbcb",
"custom-gray": "#e2e2e2",
"custom-light-gray": "#f0f0f0",
"custom-extra-light-gray": "#262626",
},
keyframes: {
"rotate-card": {
"0%": {
transform: "rotate(0deg)",
},
"33%": {
transform: "rotate(-3deg)",
},
"66%": {
transform: "rotate(3deg)",
},
"100%": {
transform: "rotate(0deg)",
},
},
"fade-in": {
"0%": {
opacity: 0,
visibility: "visible",
},
"100%": {
opacity: 1,
},
},
"fade-out": {
"0%": {
opacity: 1,
},
"100%": {
opacity: 0,
visibility: "hidden",
},
},
},
animation: {
"rotate-card": "rotate-card 3s ease-in-out infinite",
"fade-in": "fade-in 0.2s ease-in-out forwards",
"fade-out": "fade-out 0.2s ease-in-out forwards",
},
},
},
plugins: [],
};
export default config;