- Passendes SVG-Favicon (Gradient-Mark wie in der Top-Navi) + theme-color, registriert im <head> - 'Bewerbungs-Tracker' als zweifarbiger Schriftzug: Bewerbungs in Slate, Tracker im Sky->Blue-Gradient Co-Authored-By: Claude <noreply@anthropic.com>
24 lines
866 B
Plaintext
24 lines
866 B
Plaintext
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="theme-color" content="#2563eb">
|
|
<title>Bewerbungs-Tracker</title>
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
|
|
<!-- Apply the dark class before first paint to avoid a light-mode flash (FOUC).
|
|
Theme follows the browser/OS setting (prefers-color-scheme) — no manual toggle. -->
|
|
<script>
|
|
(function () {
|
|
try {
|
|
if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
|
|
document.documentElement.classList.add('dark');
|
|
}
|
|
} catch (e) { /* ignore */ }
|
|
})();
|
|
</script>
|
|
<!-- Tailwind CSS CDN -->
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<script>
|
|
tailwind.config = { darkMode: 'class' };
|
|
</script>
|
|
<!-- Custom CSS -->
|
|
<link rel="stylesheet" href="/css/styles.css">
|