generated from google-gemini/aistudio-repository-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (69 loc) · 2.83 KB
/
index.html
File metadata and controls
74 lines (69 loc) · 2.83 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
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="utf-8" />
<title>CodeMap Visualizer</title>
<base href="/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<script src="https://cdn.tailwindcss.com"></script>
<!-- Highlight.js Theme -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/atom-one-dark.min.css">
<!-- External Libraries (Loaded in head to ensure availability at bootstrap) -->
<script src="https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
<script src="https://d3js.org/d3.v7.min.js"></script>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.mermaid .edgeLabel {
color: #e5e7eb !important;
background-color: #1f2937 !important;
}
/* Custom Scrollbar for Webkit */
::-webkit-scrollbar {
width: 10px;
height: 10px;
}
::-webkit-scrollbar-track {
background: #0f172a;
}
::-webkit-scrollbar-thumb {
background: #334155;
border-radius: 5px;
border: 2px solid #0f172a;
}
::-webkit-scrollbar-thumb:hover {
background: #475569;
}
/* Adjust highlight.js background to match app theme better if needed, but atom-one-dark is good */
pre code.hljs {
background: transparent;
padding: 0;
}
</style>
<script type="importmap">
{
"imports": {
"rxjs": "https://esm.sh/rxjs@^7.8.2?conditions=es2015",
"rxjs/operators": "https://esm.sh/rxjs@^7.8.2/operators?conditions=es2015",
"rxjs/ajax": "https://esm.sh/rxjs@^7.8.2/ajax?conditions=es2015",
"rxjs/webSocket": "https://esm.sh/rxjs@^7.8.2/webSocket?conditions=es2015",
"rxjs/testing": "https://esm.sh/rxjs@^7.8.2/testing?conditions=es2015",
"rxjs/fetch": "https://esm.sh/rxjs@^7.8.2/fetch?conditions=es2015",
"@angular/common": "https://next.esm.sh/@angular/common@^21.0.5?external=rxjs",
"@angular/common/http": "https://next.esm.sh/@angular/common@^21.0.5/http?external=rxjs",
"@angular/forms": "https://next.esm.sh/@angular/forms@^21.0.5?external=rxjs",
"@angular/platform-browser": "https://next.esm.sh/@angular/platform-browser@^21.0.5?external=rxjs",
"@angular/compiler": "https://next.esm.sh/@angular/compiler@^21.0.5?external=rxjs",
"@angular/core": "https://next.esm.sh/@angular/core@^21.0.5?external=rxjs"
}
}
</script>
</head>
<body class="bg-slate-950 text-slate-200 selection:bg-cyan-500/30">
<app-root></app-root>
</body>
</html>