-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (105 loc) · 3.47 KB
/
index.html
File metadata and controls
106 lines (105 loc) · 3.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="https://picsum.photos/32/32" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ClimateShift Alpha</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
'fin-bg': '#0f172a', // Slate 900
'fin-card': '#1e293b', // Slate 800
'fin-border': '#334155', // Slate 700
'fin-text': '#f1f5f9', // Slate 100
'fin-accent': '#10b981', // Emerald 500
'fin-danger': '#ef4444', // Red 500
'fin-mute': '#94a3b8', // Slate 400
},
fontFamily: {
mono: ['ui-monospace', 'SFMono-Regular', 'Menlo', 'Monaco', 'Consolas', "Liberation Mono", "Courier New", 'monospace'],
},
keyframes: {
shimmer: {
'0%': { transform: 'translateX(-100%)' },
'100%': { transform: 'translateX(100%)' }
},
marquee: {
'0%': { transform: 'translateX(100%)' },
'100%': { transform: 'translateX(-100%)' }
},
'infinite-scroll': {
'0%': { transform: 'translateX(0)' },
'100%': { transform: 'translateX(-50%)' }
},
'slide-up': {
'0%': { transform: 'translateY(100%)', opacity: '0' },
'100%': { transform: 'translateY(0)', opacity: '1' }
},
'scale-up': {
'0%': { transform: 'scale(0.95)', opacity: '0' },
'100%': { transform: 'scale(1)', opacity: '1' }
},
'fade-in': {
'0%': { opacity: '0' },
'100%': { opacity: '1' }
}
},
animation: {
shimmer: 'shimmer 2s infinite',
marquee: 'marquee 296s linear infinite',
'infinite-scroll': 'infinite-scroll 80s linear infinite',
'slide-up': 'slide-up 0.3s ease-out',
'scale-up': 'scale-up 0.2s ease-out',
'fade-in': 'fade-in 0.3s ease-out',
}
}
}
}
</script>
<style>
body {
background-color: #0f172a;
color: #f1f5f9;
}
/* Custom scrollbar for financial data tables */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #1e293b;
}
::-webkit-scrollbar-thumb {
background: #475569;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #64748b;
}
.pause-animation:hover {
animation-play-state: paused;
}
</style>
<script type="importmap">
{
"imports": {
"recharts": "https://aistudiocdn.com/recharts@^3.5.1",
"@google/genai": "https://aistudiocdn.com/@google/genai@^1.31.0",
"react-dom/": "https://aistudiocdn.com/react-dom@^19.2.1/",
"lucide-react": "https://aistudiocdn.com/lucide-react@^0.556.0",
"react/": "https://aistudiocdn.com/react@^19.2.1/",
"react": "https://aistudiocdn.com/react@^19.2.1",
"vitest": "https://aistudiocdn.com/vitest@^4.0.15",
"vitest/": "https://aistudiocdn.com/vitest@^4.0.15/"
}
}
</script>
</head>
<body>
<div id="root"></div>
</body>
</html>