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

21 lines
1.5 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: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.item { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.box { width: 110px; height: 70px; background: var(--paper); border: 1px solid var(--ink); display:flex; align-items:center; justify-content:center; font-family: var(--font-display); font-weight:600; font-size:14px;}
.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:18px;">Elevation · printed offset shadow</div>
<div class="row">
<div class="item"><div class="box">flat</div><div class="val">shadow-0</div><div class="lbl">surface · no shadow</div></div>
<div class="item"><div class="box" style="box-shadow: 2px 2px 0 0 var(--ink);">2px</div><div class="val">shadow-2</div><div class="lbl">button rest</div></div>
<div class="item"><div class="box" style="box-shadow: 4px 4px 0 0 var(--ink);">4px</div><div class="val">shadow-3</div><div class="lbl">button hover · card</div></div>
<div class="item"><div class="box" style="box-shadow: 0 8px 24px rgba(14,14,12,0.12);">soft</div><div class="val">shadow-pop</div><div class="lbl">menu · marketing</div></div>
</div>
</body></html>