8223a566e4
A design handoff bundle generated by Claude Design (claude.ai/design) on 2026-05-02. Defines the Bloomberg/F1-pit-wall aesthetic for TRM: - ink-on-paper base + race-flag red accent (#E8412B) - square-edged everything, sharp printed offset shadows - mono numerics (JetBrains Mono) for any changing value - Goldplay (real licensed font, three weights in bundle fonts/) - four surfaces designed: dashboard / leaderboard / mobile / marketing (SPA scope is the first two) The bundle is committed in-tree at TRM_Design_System-handoff/ so 3.8 has the full source material when it picks the work up. Includes: - Top-level + project READMEs (the design spec) - chats/chat1.md (intent + iteration history) - colors_and_type.css (token set, drop-in for Tailwind 4 @theme) - fonts/ (Goldplay regular/semibold/bold) - ui_kits/ (HTML prototypes per surface) - preview/ (per-token visual reference cards) Updated phase-3-dogfood-readiness/README.md task 3.8 row to point at the bundle and document the recommended approach (retheme shadcn via CSS variable overrides + Tailwind 4 @theme, not replace). Why deferred: foundational tokens are non-blocking for Phase 1 (login + placeholder home) and Phase 2 (live map without chrome). Applying them now would either delay dogfood-blocking work or land partial styling that gets reworked when 3.8 lands the full pass.
36 lines
2.3 KiB
HTML
36 lines
2.3 KiB
HTML
<!doctype html><html><head><meta charset="utf-8">
|
|
<link rel="stylesheet" href="../colors_and_type.css">
|
|
<link rel="stylesheet" href="_card.css">
|
|
<script src="https://unpkg.com/lucide@latest"></script>
|
|
<style>
|
|
body { padding: 24px; }
|
|
.grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px; }
|
|
.ic { display:flex; flex-direction:column; align-items:center; gap:6px; padding: 10px; border: 1px solid var(--hairline); }
|
|
.ic [data-lucide] { width: 22px; height: 22px; stroke-width: 2; color: var(--ink); }
|
|
.ic .nm { font-family: var(--font-mono); font-size: 9px; color: var(--ink-3); letter-spacing: 0.04em; text-transform: uppercase;}
|
|
.lbl { font-family: var(--font-mono); font-size: 10px; color: var(--ink-3); margin-top: 14px; }
|
|
</style></head>
|
|
<body>
|
|
<div class="overline" style="margin-bottom:14px;">Iconography · Lucide 2px stroke</div>
|
|
<div class="grid">
|
|
<div class="ic"><i data-lucide="flag"></i><div class="nm">flag</div></div>
|
|
<div class="ic"><i data-lucide="timer"></i><div class="nm">timer</div></div>
|
|
<div class="ic"><i data-lucide="map-pin"></i><div class="nm">pin</div></div>
|
|
<div class="ic"><i data-lucide="trophy"></i><div class="nm">trophy</div></div>
|
|
<div class="ic"><i data-lucide="users"></i><div class="nm">users</div></div>
|
|
<div class="ic"><i data-lucide="bar-chart-3"></i><div class="nm">chart</div></div>
|
|
<div class="ic"><i data-lucide="settings"></i><div class="nm">settings</div></div>
|
|
<div class="ic"><i data-lucide="bell"></i><div class="nm">bell</div></div>
|
|
<div class="ic"><i data-lucide="play"></i><div class="nm">play</div></div>
|
|
<div class="ic"><i data-lucide="pause"></i><div class="nm">pause</div></div>
|
|
<div class="ic"><i data-lucide="circle-stop"></i><div class="nm">stop</div></div>
|
|
<div class="ic"><i data-lucide="radio"></i><div class="nm">radio</div></div>
|
|
<div class="ic"><i data-lucide="route"></i><div class="nm">route</div></div>
|
|
<div class="ic"><i data-lucide="watch"></i><div class="nm">watch</div></div>
|
|
<div class="ic"><i data-lucide="wifi"></i><div class="nm">wifi</div></div>
|
|
<div class="ic"><i data-lucide="download"></i><div class="nm">export</div></div>
|
|
</div>
|
|
<div class="lbl">Sizes 14 / 16 / 20 / 24 / 32 · color inherits currentColor</div>
|
|
<script>lucide.createIcons();</script>
|
|
</body></html>
|