-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
153 lines (152 loc) · 4.67 KB
/
Copy pathtailwind.config.ts
File metadata and controls
153 lines (152 loc) · 4.67 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
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
import type { Config } from "tailwindcss";
const config: 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: {
void: {
black: "#0a0a0a",
dark: "#111111",
darker: "#1a1a1a",
gray: "#1f1f1f",
light: "#2a2a2a",
lighter: "#3a3a3a",
accent: "#6366f1",
"accent-light": "#818cf8",
text: "#f8fafc",
muted: "#94a3b8",
"muted-dark": "#64748b",
border: "#1e293b",
"border-light": "#334155",
},
"upside-down": {
black: "#0a0a0a",
dark: "#141414",
darker: "#1a1a1a",
gray: "#1f1f1f",
light: "#2a2a2a",
lighter: "#353535",
accent: "#dc2626", // Darker, muted red (more burgundy)
"accent-light": "#ef4444", // Slightly brighter red for hover
"accent-dark": "#b91c1c",
text: "#e5e5e5",
muted: "#a3a3a3",
"muted-dark": "#737373",
border: "#262626",
"border-light": "#404040",
},
},
fontFamily: {
mono: [
"var(--font-jetbrains)",
"Consolas",
"Monaco",
"Courier New",
"monospace",
],
sans: ["var(--font-inter)", "system-ui", "sans-serif"],
},
animation: {
"fade-in": "fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1)",
"fade-in-up": "fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1)",
"slide-in": "slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1)",
"pulse-slow": "pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite",
glow: "glow 2s ease-in-out infinite alternate",
float: "float 6s ease-in-out infinite",
"spin-slow": "spin 8s linear infinite",
"spin-reverse": "spin 6s linear infinite reverse",
"fall-into-hole": "fallIntoHole 3s ease-in infinite",
"glitch-float": "glitchFloat 6s ease-in-out infinite",
glitch: "glitch 1s ease-in-out infinite",
"dimension-flip": "dimensionFlip 0.8s ease-in-out",
},
keyframes: {
fadeIn: {
"0%": { opacity: "0", transform: "translateY(8px)" },
"100%": { opacity: "1", transform: "translateY(0)" },
},
fadeInUp: {
"0%": { opacity: "0", transform: "translateY(16px)" },
"100%": { opacity: "1", transform: "translateY(0)" },
},
slideIn: {
"0%": { opacity: "0", transform: "translateX(-8px)" },
"100%": { opacity: "1", transform: "translateX(0)" },
},
glow: {
"0%": { boxShadow: "0 0 5px rgba(99, 102, 241, 0.2)" },
"100%": { boxShadow: "0 0 20px rgba(99, 102, 241, 0.4)" },
},
float: {
"0%, 100%": { transform: "translateY(0px)" },
"50%": { transform: "translateY(-4px)" },
},
fallIntoHole: {
"0%": {
transform: "translateY(-100vh) scale(1)",
opacity: "1",
},
"70%": {
transform: "translateY(40vh) scale(0.8)",
opacity: "0.8",
},
"100%": {
transform: "translateY(50vh) scale(0)",
opacity: "0",
},
},
glitchFloat: {
"0%, 100%": {
transform: "translateY(0px) translateX(0px)",
opacity: "1",
},
"25%": {
transform: "translateY(-6px) translateX(2px)",
opacity: "0.8",
},
"50%": {
transform: "translateY(-3px) translateX(-2px)",
opacity: "1",
},
"75%": {
transform: "translateY(-8px) translateX(1px)",
opacity: "0.9",
},
},
glitch: {
"0%, 100%": { transform: "translate(0)" },
"20%": { transform: "translate(-2px, 2px)" },
"40%": { transform: "translate(-2px, -2px)" },
"60%": { transform: "translate(2px, 2px)" },
"80%": { transform: "translate(2px, -2px)" },
},
dimensionFlip: {
"0%": {
transform: "scaleY(1) rotateX(0deg)",
opacity: "1",
},
"50%": {
transform: "scaleY(0.5) rotateX(180deg)",
opacity: "0.3",
},
"100%": {
transform: "scaleY(1) rotateX(360deg)",
opacity: "1",
},
},
},
backdropBlur: {
xs: "2px",
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
},
},
},
plugins: [],
};
export default config;