98a6dbee87
CSS-layer-only changes for zero-regression visual modernization: - Typography: Inter font with OpenType features (cv02-cv04, cv11), tighter letter-spacing - Dark theme: neutral zinc tones (#09090b/#18181b) replacing blue-slate (#0f172a/#1e293b) - Borders: rgba-based for subtlety instead of solid hex colors - Cards: rounded-xl, refined shadows with dark mode variant - Buttons: rounded-lg, subtle lift on hover, smoother transitions (150ms ease-out) - Badges: rounded-md (softer than full-round), tracking-wide - Inputs: rounded-lg, ring-offset-0 for tighter focus rings - Scrollbars: thin 6px custom scrollbars matching theme - Selection: accent-colored text selection - Table headers: uppercase tracking-wider for modern data table look - Utility: fadeIn animation, subtle-pulse for loading states No component files changed — all styling propagates via CSS variables and Tailwind config. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
17 lines
665 B
HTML
17 lines
665 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="" data-accent="green">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/schaeffler.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Schaeffler Automat</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|