-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclone.html
More file actions
31 lines (31 loc) · 1.01 KB
/
clone.html
File metadata and controls
31 lines (31 loc) · 1.01 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Clone Repository</title>
<script>
(() => {
try {
const mode = localStorage.getItem("gitmun.themeMode");
if (mode === "Light") {
document.documentElement.dataset.theme = "light";
} else if (mode === "Dark") {
document.documentElement.dataset.theme = "dark";
} else if (!document.documentElement.dataset.theme) {
document.documentElement.dataset.theme =
window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light";
}
} catch {}
})();
</script>
<style>
html, body { background: #f4f6fb; }
html[data-theme="dark"], html[data-theme="dark"] body { background: #0f1117; }
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/windows/clone.tsx"></script>
</body>
</html>