-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
76 lines (70 loc) · 2.31 KB
/
Copy pathtailwind.config.ts
File metadata and controls
76 lines (70 loc) · 2.31 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
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: {
// Vortex palette: deep navy, sage accents
"vx-ink": "#080C14",
"vx-base": "#0C1120",
"vx-surface":"#111827",
"vx-card": "#161E2E",
"vx-border": "rgba(255,255,255,0.07)",
"vx-line": "rgba(255,255,255,0.04)",
// Primary: sage green (Stellar brand adjacent)
"vx-sage": "#4CEBA8",
"vx-sage-dim": "#2A8A62",
"vx-sage-bg": "rgba(76,235,168,0.08)",
// Accent: soft lavender for source chain
"vx-lav": "#A78BFA",
"vx-lav-dim": "#5B3F8C",
"vx-lav-bg": "rgba(167,139,250,0.08)",
// State colors
"vx-amber": "#F5A623",
"vx-rose": "#F87171",
// Text
"vx-text": "#E8EDF5",
"vx-muted": "#6B7A8E",
"vx-dim": "#374151",
},
fontFamily: {
sans: ["var(--font-geist-sans)", "system-ui", "sans-serif"],
mono: ["var(--font-geist-mono)", "JetBrains Mono", "monospace"],
},
backgroundImage: {
"vx-gradient": "linear-gradient(135deg, rgba(76,235,168,0.06) 0%, rgba(167,139,250,0.06) 100%)",
"vx-card-gradient": "linear-gradient(160deg, rgba(76,235,168,0.03) 0%, transparent 60%)",
},
keyframes: {
"flow": {
"0%": { strokeDashoffset: "100" },
"100%": { strokeDashoffset: "0" },
},
"fade-up": {
from: { opacity: "0", transform: "translateY(12px)" },
to: { opacity: "1", transform: "translateY(0)" },
},
"spin-slow": {
from: { transform: "rotate(0deg)" },
to: { transform: "rotate(360deg)" },
},
"shimmer": {
"0%": { backgroundPosition: "-200% 0" },
"100%": { backgroundPosition: "200% 0" },
},
},
animation: {
"flow": "flow 1.5s linear infinite",
"fade-up": "fade-up 0.3s ease-out",
"spin-slow": "spin-slow 3s linear infinite",
"shimmer": "shimmer 2s linear infinite",
},
},
},
plugins: [],
};
export default config;