File size: 845 Bytes
b7d4394
 
 
 
 
 
f3c6831
b7d4394
 
 
f3c6831
 
 
b7d4394
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Codex Proxy Developer Dashboard</title>
  <meta name="color-scheme" content="light dark">
  <script>
    try {
      const t = localStorage.getItem('codex-proxy-theme');
      const isDark = t === 'dark' || (!t && window.matchMedia('(prefers-color-scheme: dark)').matches);
      if (isDark) document.documentElement.classList.add('dark');
      document.documentElement.style.colorScheme = isDark ? 'dark' : 'light';
    } catch {}
  </script>
</head>
<body class="bg-bg-light dark:bg-bg-dark font-display text-slate-900 dark:text-text-main antialiased min-h-screen flex flex-col transition-colors">
  <div id="app"></div>
  <script type="module" src="/src/main.tsx"></script>
</body>
</html>