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.
28 lines
2.1 KiB
HTML
28 lines
2.1 KiB
HTML
<!doctype html><html><head><meta charset="utf-8">
|
|
<link rel="stylesheet" href="../colors_and_type.css">
|
|
<link rel="stylesheet" href="_card.css">
|
|
<style>
|
|
body { padding: 20px; }
|
|
.row { display: flex; align-items: flex-end; gap: 12px; }
|
|
.item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
|
|
.bar { background: var(--ink); }
|
|
.lbl { font-family: var(--font-mono); font-size: 10px; color: var(--ink-3); }
|
|
.val { font-family: var(--font-mono); font-size: 11px; color: var(--ink); font-weight: 600; }
|
|
</style></head>
|
|
<body>
|
|
<div class="overline" style="margin-bottom:14px;">Spacing scale · 4-px base</div>
|
|
<div class="row">
|
|
<div class="item"><div class="bar" style="width:4px;height:4px;"></div><div class="val">4</div><div class="lbl">s-2</div></div>
|
|
<div class="item"><div class="bar" style="width:8px;height:8px;"></div><div class="val">8</div><div class="lbl">s-3</div></div>
|
|
<div class="item"><div class="bar" style="width:12px;height:12px;"></div><div class="val">12</div><div class="lbl">s-4</div></div>
|
|
<div class="item"><div class="bar" style="width:16px;height:16px;"></div><div class="val">16</div><div class="lbl">s-5</div></div>
|
|
<div class="item"><div class="bar" style="width:20px;height:20px;"></div><div class="val">20</div><div class="lbl">s-6</div></div>
|
|
<div class="item"><div class="bar" style="width:24px;height:24px;"></div><div class="val">24</div><div class="lbl">s-7</div></div>
|
|
<div class="item"><div class="bar" style="width:32px;height:32px;"></div><div class="val">32</div><div class="lbl">s-8</div></div>
|
|
<div class="item"><div class="bar" style="width:40px;height:40px;"></div><div class="val">40</div><div class="lbl">s-9</div></div>
|
|
<div class="item"><div class="bar" style="width:48px;height:48px;"></div><div class="val">48</div><div class="lbl">s-10</div></div>
|
|
<div class="item"><div class="bar" style="width:64px;height:64px;"></div><div class="val">64</div><div class="lbl">s-11</div></div>
|
|
<div class="item"><div class="bar" style="width:80px;height:80px;"></div><div class="val">80</div><div class="lbl">s-12</div></div>
|
|
</div>
|
|
</body></html>
|