- Delete ThemeToggle.svelte component - Remove theme toggle from Header - Set permanent cs2dark theme in app.html - Add darkreader-lock meta tag to prevent extension conflicts - Add color-scheme: dark meta for browser hints - Update theme-color to void (#0a0a0f) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
652 B
HTML
18 lines
652 B
HTML
<!doctype html>
|
|
<html lang="en" data-theme="cs2dark">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="icon" href="%sveltekit.assets%/favicon.ico" />
|
|
<link rel="manifest" href="%sveltekit.assets%/site.webmanifest" />
|
|
<meta name="theme-color" content="#0a0a0f" />
|
|
<meta name="color-scheme" content="dark" />
|
|
<meta name="darkreader-lock" />
|
|
<meta name="description" content="Track flashbang statistics in CS2. Expose team flashers." />
|
|
%sveltekit.head%
|
|
</head>
|
|
<body class="bg-void text-white">
|
|
<div style="display: contents">%sveltekit.body%</div>
|
|
</body>
|
|
</html>
|