Adopt the Hangman Lab visual language (adapted from the Gitea STYLE.md, Gitea-only mechanics excluded): - New acid SVG mark as favicon (?v cache-bust) and navbar logo. - Single acid accent (#d8ff3e); retune globals.css tokens to the ink/panel/line/text/dim/danger palette; drop the cyan/violet pair (secondary -> same acid so existing components stay on-brand). - Fonts: IBM Plex Mono for body/UI/mono, Major Mono Display for the lowercase brand lockup; Tailwind fontFamily + content fonts updated. - Site-wide fixed 48px blueprint-grid backdrop + one acid sheen. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
24 lines
924 B
HTML
24 lines
924 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="dark">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="color-scheme" content="dark">
|
|
<title>Hangman Lab</title>
|
|
<link rel="icon" type="image/svg+xml" href="./icons/hangman-lab-logo.svg?v=hl-20260517">
|
|
<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=Major+Mono+Display&family=IBM+Plex+Mono:ital,wght@0,400;0,500;0,600;1,400&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<link
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
|
|
rel="stylesheet"
|
|
/>
|
|
</body>
|
|
|
|
</html> |