-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (65 loc) · 1.79 KB
/
Copy pathindex.html
File metadata and controls
65 lines (65 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CampCraft - Ultralight Gear Planner</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
earth: {
50: '#f7f6f5',
100: '#e8e6e1',
200: '#d3cec4',
300: '#b6ae9f',
400: '#988e7d',
500: '#7f7461',
600: '#665c4b',
700: '#52493d',
800: '#443d34',
900: '#3a342d',
},
moss: {
50: '#f2f9f3',
100: '#e1f2e3',
200: '#c3e5c8',
300: '#96d09f',
400: '#64b471',
500: '#429851',
600: '#31793e',
700: '#2a6034',
800: '#254d2d',
900: '#1f4027',
},
}
}
}
}
</script>
<style>
body {
background-color: #f7f6f5; /* earth-50 */
color: #3a342d; /* earth-900 */
}
</style>
<script type="importmap">
{
"imports": {
"@google/genai": "https://aistudiocdn.com/@google/genai@^1.30.0",
"react-dom/": "https://aistudiocdn.com/react-dom@^19.2.0/",
"react/": "https://aistudiocdn.com/react@^19.2.0/",
"react": "https://aistudiocdn.com/react@^19.2.0",
"lucide-react": "https://aistudiocdn.com/lucide-react@^0.555.0",
"react-markdown": "https://aistudiocdn.com/react-markdown@^10.1.0",
"recharts": "https://aistudiocdn.com/recharts@^3.5.0"
}
}
</script>
</head>
<body>
<div id="root"></div>
</body>
</html>