feat(ui): migrate all view bodies to design tokens (F1b)
Tests · UI / test (push) Successful in 2m11s
Tests · UI / test (pull_request) Successful in 2m7s

Tokenize every remaining component <style> — calculator, order tab,
inspectors, tables, report sections, lobby, auth, mail, battle viewer,
toasts, map overlays. A scripted pass handled the unambiguous core
palette (text/bg/surface/border/accent/danger/muted), the rest were
mapped to the semantic/grey tokens by role.

Remaining colour literals are the documented exceptions only: the
battle-scene SVG data-visualisation palette (fixed dark, like the WebGL
map canvas), overlay scrims (modal / map-canvas), and directional or
deliberate drop shadows. The default theme stays dark until light
coherence is signed off across the views.

Updates ui/docs/design-system.md (migration status + exceptions).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Ilia Denisov
2026-05-22 07:24:02 +02:00
parent 973480d812
commit 4ad96b0ef7
58 changed files with 515 additions and 497 deletions
+6 -6
View File
@@ -726,7 +726,7 @@ preference the store already manages.
min-height: 0;
position: relative;
overflow: hidden;
background: #0a0e1a;
background: var(--color-bg);
}
canvas {
display: block;
@@ -740,8 +740,8 @@ preference the store already manages.
transform: translateX(-50%);
padding: 0.4rem 0.9rem;
background: rgba(20, 24, 42, 0.85);
color: #e8eaf6;
border: 1px solid #2a3150;
color: var(--color-text);
border: 1px solid var(--color-border);
border-radius: 6px;
z-index: 10;
font-family: system-ui, sans-serif;
@@ -749,8 +749,8 @@ preference the store already manages.
margin: 0;
}
.overlay.error {
background: #4a1820;
border-color: #6d2530;
color: #ffb4b4;
background: var(--color-danger-subtle);
border-color: var(--color-danger);
color: var(--color-danger);
}
</style>