-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (72 loc) · 2.16 KB
/
index.html
File metadata and controls
74 lines (72 loc) · 2.16 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">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="/favicon.png" />
<link rel="icon" type="image/svg+xml" href="/howcode-icon.svg" />
<title>howcode</title>
<script>
(() => {
const storageKey = "howcode:pi-gui-theme:v1";
const managedVars = [
"--bg",
"--sidebar",
"--workspace",
"--panel",
"--panel-2",
"--panel-3",
"--border",
"--border-strong",
"--text",
"--muted",
"--muted-2",
"--accent",
"--accent-bg-subtle",
"--accent-bg",
"--accent-bg-strong",
"--accent-border",
"--accent-contrast",
"--surface-hover",
"--green",
"--danger",
"--danger-bg",
"--danger-border",
"--warning",
"--warning-bg",
"--terminal-bg",
"--message-user-bg",
"--message-assistant-bg",
"--message-tool-bg",
"--message-code-bg",
"--markdown-heading",
"--markdown-link",
"--markdown-code",
"--markdown-code-bg",
"--markdown-quote",
"--shadow",
];
try {
const values = JSON.parse(window.localStorage.getItem(storageKey) || "null");
if (!values || (values.colorScheme !== "dark" && values.colorScheme !== "light")) {
return;
}
if (!managedVars.every((property) => typeof values[property] === "string")) {
return;
}
const rootStyle = document.documentElement.style;
document.documentElement.style.colorScheme = values.colorScheme;
for (const property of managedVars) {
rootStyle.setProperty(property, values[property]);
}
} catch {
// Ignore stale or invalid cached theme state during bootstrap.
}
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>