Files
julian 8223a566e4 docs: import TRM design handoff + defer adoption to phase 3.8
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.
2026-05-02 19:11:57 +02:00

41 lines
1.8 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: 24px; }
.row { display: flex; flex-wrap: wrap; gap: 14px; }
.alert { display: grid; grid-template-columns: 8px 1fr auto; gap: 12px; align-items: center; padding: 10px 14px; border: 1px solid var(--ink); background: var(--paper-2); width: 100%; }
.alert .bar { width: 4px; align-self: stretch; }
.alert .msg { font-family: var(--font-display); font-size: 13px; }
.alert .meta { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); }
.alert.warn .bar { background: var(--amber); }
.alert.danger .bar { background: var(--flag); }
.alert.ok .bar { background: var(--green); }
.alert.info .bar { background: var(--blue); }
</style></head>
<body>
<div class="overline" style="margin-bottom:14px;">Inline alerts · race control</div>
<div class="row">
<div class="alert danger">
<div class="bar"></div>
<div><span class="msg">Bib 247 — missed split 3</span> &nbsp; <span class="meta">flagging for review</span></div>
<div class="meta">14:02:11</div>
</div>
<div class="alert warn">
<div class="bar"></div>
<div><span class="msg">Yellow flag — sector 2</span> &nbsp; <span class="meta">debris cleared in 90s</span></div>
<div class="meta">14:00:42</div>
</div>
<div class="alert ok">
<div class="bar"></div>
<div><span class="msg">Wave 3 cleared start mat</span> &nbsp; <span class="meta">412 / 412 starters</span></div>
<div class="meta">13:45:00</div>
</div>
<div class="alert info">
<div class="bar"></div>
<div><span class="msg">Tracking active</span> &nbsp; <span class="meta">14 of 14 mats online</span></div>
<div class="meta">13:30:00</div>
</div>
</div>
</body></html>