This repository was archived by the owner on Dec 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
55 lines (55 loc) · 1.62 KB
/
tailwind.config.js
File metadata and controls
55 lines (55 loc) · 1.62 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
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: {
primary: "#FF3C38",
secondary: "#121212",
support: "#00BFFF",
light: "#ECECEC",
alert: "#FFC857",
detail: "#8D99AE",
},
fontFamily: {
sans: ["Inter", "system-ui", "sans-serif"],
},
animation: {
"fade-in": "fadeIn 0.6s ease-in-out",
"slide-up": "slideUp 0.6s ease-out",
"bounce-slow": "bounce 2s infinite",
"pulse-slow": "pulse 3s infinite",
float: "float 6s ease-in-out infinite",
morph: "morph 8s ease-in-out infinite",
"background-pan": "backgroundPan 15s linear infinite alternate",
},
keyframes: {
fadeIn: {
"0%": { opacity: "0" },
"100%": { opacity: "1" },
},
slideUp: {
"0%": { transform: "translateY(20px)", opacity: "0" },
"100%": { transform: "translateY(0)", opacity: "1" },
},
float: {
"0%, 100%": { transform: "translateY(0)" },
"50%": { transform: "translateY(-20px)" },
},
morph: {
"0%, 100%": { borderRadius: "60% 40% 30% 70% / 60% 30% 70% 40%" },
"50%": { borderRadius: "30% 60% 70% 40% / 50% 60% 30% 60%" },
},
backgroundPan: {
"0%": { backgroundPosition: "0% 0%" },
"100%": { backgroundPosition: "100% 100%" },
},
},
},
},
plugins: [],
};