-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 996 Bytes
/
Copy pathindex.html
File metadata and controls
31 lines (31 loc) · 996 Bytes
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>Pretty Tmux</title>
<script>
// Apply the saved theme class to <html> before React mounts to avoid a
// flash of the wrong theme. Mirrors readInitial() in src/lib/theme.ts.
(function () {
try {
var saved = localStorage.getItem('pretty-claude-theme');
var theme =
saved === 'dark' || saved === 'light'
? saved
: window.matchMedia &&
window.matchMedia('(prefers-color-scheme: light)').matches
? 'light'
: 'dark';
document.documentElement.classList.add(
theme === 'light' ? 'theme-light' : 'theme-dark'
);
} catch (e) {}
})();
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>