-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
99 lines (93 loc) · 2.59 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: {
primaryGreen: "#52b788",
secondaryGreen: "#74c69d",
tableGreen: "#74c69d1c",
lightGrey: "#dad7cd",
accent: "hsl(var(--color-accent))",
tableAccent: "hsl(var(--color-accent)/0.05)",
},
boxShadow: {
primary: "5px 5px 9px #b3b3b3, -5px -5px 9px #eeeeee",
},
keyframes: {
wave: {
"0%": { transfrom: "translateX(0px)" },
"100%": { transform: "translateX(-1600px)" },
},
swell: {
"0%": { transform: "translate3d(0,-25px,0)" },
"50%": { transform: "translate3d(0,5px,0)" },
"100%": { transform: "translate3d(0,-25px,0)" },
},
slideInTop: {
"0%": {
opacity: "0",
// filter: "blur(5px)",
transform: "translateY(-100%)",
},
"100%": {
opacity: "1",
// filter: "blur(0)",
transform: "translateY(0)",
},
},
slideInLeft: {
"0%": {
opacity: "0",
// filter: "blur(5px)",
transform: "translateX(-20%)",
},
"100%": {
opacity: "1",
// filter: "blur(0)",
transform: "translateX(0)",
},
},
slideInRight: {
"0%": {
opacity: "0",
// filter: "blur(5px)",
transform: "translateX(20%)",
},
"100%": {
opacity: "1",
// filter: "blur(0)",
transform: "translateX(0)",
},
},
slideInBottom: {
"0%": {
opacity: "0",
// filter: "blur(5px)",
transform: "translateY(100%)",
},
"100%": {
opacity: "1",
// filter: "blur(0)",
transform: "translateY(0)",
},
},
fadeIn: {
"0%": { opacity: "0" },
"100%": { opacity: "1" },
},
},
animation: {
wave: "wave 7s cubic-bezier(0.36,0.45,0.63,0.53) infinite",
swell:
"swell 7s ease -1.25s infinite, wave 7s cubic-bezier(0.36,0.45,0.63,0.53) -.125s infinite ",
slideInRight: "slideInRight 1s forwards",
slideInTop: "slideInTop 1s forwards",
slideInLeft: "slideInLeft 1s forwards",
slideInBottom: "slideInBottom 1s forwards",
fadeIn: "fadeIn 1s forwards",
},
},
},
plugins: [],
};