-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
67 lines (66 loc) · 1.88 KB
/
tailwind.config.ts
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
import type { Config } from "tailwindcss";
export default {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
container: {
screens: {
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1024px",
"2xl": "1024px",
},
},
colors: {
background: "#0E0E10",
accent: "#87C8FE",
},
keyframes: {
wave: {
"0%": { transform: "rotate(0.0deg)" },
"15%": { transform: "rotate(14.0deg)" },
"30%": { transform: "rotate(-8.0deg)" },
"40%": { transform: "rotate(14.0deg)" },
"50%": { transform: "rotate(-4.0deg)" },
"60%": { transform: "rotate(10.0deg)" },
"70%": { transform: "rotate(0.0deg)" },
"100%": { transform: "rotate(0.0deg)" },
},
blob: {
"0%": { transform: "translate(0px, 0px) scale(1)", opacity: "0.5" },
"33%": {
transform: "translate(30px, -50px) scale(1.2)",
opacity: "0.7",
},
"66%": {
transform: "translate(-20px, 20px) scale(0.8)",
opacity: "1",
},
"100%": { transform: "translate(0px, 0px) scale(1)", opacity: "0.5" },
},
"blob-color": {
"0%": { fill: "#fff" },
"20%": { fill: "#87C8FE" },
"40%": { fill: "#FF5733" },
"60%": { fill: "#FFC300" },
"80%": { fill: "#DAF7A6" },
"100%": { fill: "#fff" },
},
},
animation: {
wave: "wave 2s infinite",
blob: "blob 10s infinite",
"blob-color": "blob-color 10s infinite",
},
transitionTimingFunction: {
"in-out-quint": "cubic-bezier(0.83, 0, 0.17, 1)",
},
},
},
plugins: [],
} satisfies Config;