-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
83 lines (81 loc) · 2.9 KB
/
Copy pathtailwind.config.ts
File metadata and controls
83 lines (81 loc) · 2.9 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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
gridTemplateColumns: {
'52': 'repeat(52, minmax(0, 1fr))',
},
colors: {
void: "#050505",
liquid: "#E2E8F0",
success: "#00FF94",
error: "#FF2A6D",
accent: "#7B2CBF",
text: "#F8F9FA",
// Galaxy Theme Colors
space: {
950: "#020010", // Deepest void
900: "#080020", // Deep dark purple
800: "#100035", // Dark nebula
},
star: {
100: "#FFFFFF",
200: "#E0F0FF",
300: "#B0D0FF",
},
},
fontFamily: {
display: ['"Space Grotesk"', '"Geist"', "system-ui", "sans-serif"],
body: ["Inter", '"Geist"', "system-ui", "sans-serif"],
mono: ['"JetBrains Mono"', "monospace"],
},
backdropBlur: {
glass: "16px",
},
animation: {
"blob-pulse": "blob-pulse 3s ease-in-out infinite",
"float": "float 6s ease-in-out infinite",
"glow": "glow 2s ease-in-out infinite",
"particle-burst": "particle-burst 0.8s ease-out forwards",
"spin-slow": "spin 8s linear infinite",
"gradient-xy": "gradient-xy 15s ease infinite",
"gradient-slow": "gradient-xy 20s ease infinite",
},
keyframes: {
"blob-pulse": {
"0%, 100%": { transform: "scale(1)" },
"50%": { transform: "scale(1.05)" },
},
"float": {
"0%, 100%": { transform: "translateY(0px)" },
"50%": { transform: "translateY(-20px)" },
},
"glow": {
"0%, 100%": { opacity: "1" },
"50%": { opacity: "0.5" },
},
"particle-burst": {
"0%": { transform: "scale(0)", opacity: "1" },
"100%": { transform: "scale(2)", opacity: "0" },
},
"gradient-xy": {
"0%, 100%": {
"background-size": "400% 400%",
"background-position": "0% 0%"
},
"50%": {
"background-size": "400% 400%",
"background-position": "100% 100%"
},
},
},
},
},
plugins: [],
};
export default config;