chore: Remove theme toggle and commit to dark mode
- 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>
This commit is contained in:
10
src/app.html
10
src/app.html
@@ -1,15 +1,17 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<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="#0f172a" />
|
||||
<meta name="description" content="Statistics for CS2 matchmaking matches" />
|
||||
<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>
|
||||
<body class="bg-void text-white">
|
||||
<div style="display: contents">%sveltekit.body%</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user