-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
191 lines (190 loc) · 6.16 KB
/
tailwind.config.js
File metadata and controls
191 lines (190 loc) · 6.16 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
import { nextui } from "@nextui-org/react";
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
screens: {
xs: "475px",
"3xl": "1600px",
"4xl": "1920px",
},
fontFamily: {
orbitron: ["Orbitron", "monospace"],
space: ["Space Grotesk", "sans-serif"],
inter: ["Inter", "sans-serif"],
},
colors: {
// Comic Book Web3 Casino Theme
comic: {
green: "#00ff41", // Bright comic green
blue: "#00bfff", // Electric blue
purple: "#9d4edd", // Comic purple
pink: "#ff006e", // Hot pink
yellow: "#ffbe0b", // Comic yellow
orange: "#fb8500", // Comic orange
red: "#ff4757", // Comic red
cyan: "#00ffff", // Electric cyan
},
casino: {
dark: "#0f0f23", // Deep comic dark
darker: "#0a0a1a", // Darker comic
card: "rgba(20, 20, 40, 0.9)",
border: "rgba(255, 255, 255, 0.2)",
glow: "rgba(0, 255, 65, 0.4)",
},
// High contrast colors for better visibility
contrast: {
white: "#ffffff",
black: "#000000",
gray: {
100: "#f8f9fa",
200: "#e9ecef",
300: "#dee2e6",
400: "#ced4da",
500: "#adb5bd",
600: "#6c757d",
700: "#495057",
800: "#343a40",
900: "#212529",
},
},
},
spacing: {
18: "4.5rem",
88: "22rem",
128: "32rem",
},
animation: {
glow: "glow 2s ease-in-out infinite alternate",
float: "float 3s ease-in-out infinite",
"pulse-neon": "pulse-neon 1.5s ease-in-out infinite alternate",
"slide-up": "slide-up 0.3s ease-out",
"slide-down": "slide-down 0.3s ease-out",
"spin-slow": "spin 3s linear infinite",
"bounce-slow": "bounce 2s infinite",
"comic-pop": "comic-pop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55)",
"comic-shake": "comic-shake 0.5s ease-in-out",
"comic-zoom": "comic-zoom 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94)",
"neon-pulse": "neon-pulse 2s ease-in-out infinite",
"comic-bounce": "comic-bounce 1s ease-in-out infinite",
wiggle: "wiggle 1s ease-in-out infinite",
},
keyframes: {
glow: {
"0%": { boxShadow: "0 0 20px rgba(0, 255, 136, 0.3)" },
"100%": { boxShadow: "0 0 30px rgba(0, 255, 136, 0.6)" },
},
float: {
"0%, 100%": { transform: "translateY(0px)" },
"50%": { transform: "translateY(-10px)" },
},
"pulse-neon": {
"0%": { textShadow: "0 0 10px rgba(0, 255, 136, 0.5)" },
"100%": { textShadow: "0 0 20px rgba(0, 255, 136, 0.8)" },
},
"slide-up": {
"0%": { transform: "translateY(100%)", opacity: "0" },
"100%": { transform: "translateY(0)", opacity: "1" },
},
"slide-down": {
"0%": { transform: "translateY(-100%)", opacity: "0" },
"100%": { transform: "translateY(0)", opacity: "1" },
},
"comic-pop": {
"0%": { transform: "scale(0) rotate(-360deg)", opacity: "0" },
"50%": { transform: "scale(1.2) rotate(-180deg)", opacity: "1" },
"100%": { transform: "scale(1) rotate(0deg)", opacity: "1" },
},
"comic-shake": {
"0%, 100%": { transform: "translateX(0)" },
"10%, 30%, 50%, 70%, 90%": { transform: "translateX(-2px)" },
"20%, 40%, 60%, 80%": { transform: "translateX(2px)" },
},
"comic-zoom": {
"0%": { transform: "scale(0.8)", opacity: "0" },
"50%": { transform: "scale(1.1)", opacity: "0.8" },
"100%": { transform: "scale(1)", opacity: "1" },
},
"neon-pulse": {
"0%, 100%": {
boxShadow:
"0 0 20px rgba(0, 255, 65, 0.4), inset 0 0 20px rgba(0, 255, 65, 0.1)",
borderColor: "rgba(0, 255, 65, 0.6)",
},
"50%": {
boxShadow:
"0 0 40px rgba(0, 255, 65, 0.8), inset 0 0 30px rgba(0, 255, 65, 0.3)",
borderColor: "rgba(0, 255, 65, 1)",
},
},
"comic-bounce": {
"0%, 20%, 50%, 80%, 100%": { transform: "translateY(0)" },
"40%": { transform: "translateY(-15px)" },
"60%": { transform: "translateY(-7px)" },
},
wiggle: {
"0%, 100%": { transform: "rotate(-3deg)" },
"50%": { transform: "rotate(3deg)" },
},
},
backdropBlur: {
xs: "2px",
},
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic":
"conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
"casino-bg":
"linear-gradient(135deg, #0a0a0f 0%, #1a0a2e 50%, #16213e 100%)",
"neon-gradient":
"linear-gradient(45deg, #00ff88, #00d4ff, #8b5cf6, #ff0080)",
},
},
},
darkMode: "class",
plugins: [
nextui({
themes: {
dark: {
colors: {
background: "#0a0a0f",
foreground: "#ffffff",
primary: {
50: "#e6fff5",
100: "#b3ffdd",
200: "#80ffc4",
300: "#4dffab",
400: "#1aff92",
500: "#00ff88", // Main neon green
600: "#00cc6a",
700: "#00994d",
800: "#006630",
900: "#003318",
DEFAULT: "#00ff88",
foreground: "#000000",
},
secondary: {
DEFAULT: "#00d4ff",
foreground: "#000000",
},
success: {
DEFAULT: "#00ff88",
},
warning: {
DEFAULT: "#ffff00",
},
danger: {
DEFAULT: "#ff0080",
},
},
},
},
}),
],
};