0772de5368
Re-point the design tokens to the approved brief (docs/discovery/04): - green brand accent from #3ba31f (contrast-tuned per theme; white-on-green AA) - warm-leaning neutrals; genuine white light theme; warm-charcoal dark (not pure black) - 8px base radius; Inter-preferred font stack; static green ramp for utilities - dark-first default for new users Also re-skins the legacy styles.css palette so the current app adopts the brand. Verified: frontend builds clean. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
24 lines
793 B
HTML
24 lines
793 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>InboxIntel — Gmail analytics & cleanup</title>
|
|
<script>
|
|
// Apply the saved theme before first paint to avoid a flash of the wrong mode.
|
|
(function () {
|
|
try {
|
|
// Dark-first: default new users to dark unless they've chosen light.
|
|
var t = localStorage.getItem('ii:theme') || 'dark';
|
|
if (t === 'dark') document.documentElement.classList.add('dark');
|
|
} catch (e) {}
|
|
})();
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
</html>
|