From 51aae53ae2e179e3c91502c3ce281438b0af9635 Mon Sep 17 00:00:00 2001 From: Eric Wagoner Date: Sun, 30 Aug 2026 15:50:42 -0400 Subject: [PATCH] Player yellow brightens so laptop panels cannot read it as orange MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Mustard #c9a72a drifted orange on washed-out screens and blurred into the red beside it in rings, dots, and names. #ecc716 stays yellow on any panel. The accent gold elsewhere keeps the house tone — it never stands next to a player's red. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_015RCWSTnb1KYTPyL4GmhGnF --- packages/web/src/colors.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/web/src/colors.ts b/packages/web/src/colors.ts index 50f6efc..58e4648 100644 --- a/packages/web/src/colors.ts +++ b/packages/web/src/colors.ts @@ -1,7 +1,9 @@ // The six physical standee colors, in colorIndex order. import type { GameView } from "@wizwar/engine"; -export const PLAYER_COLORS = ["#1a9c46", "#d3352b", "#c9308f", "#3a3ac0", "#2ab0c9", "#c9a72a"]; +// The yellow must stay unmistakably yellow on a washed-out laptop panel: +// mustard drifts orange there and blurs into the red beside it. +export const PLAYER_COLORS = ["#1a9c46", "#d3352b", "#c9308f", "#3a3ac0", "#2ab0c9", "#ecc716"]; export function colorIndexOf(view: GameView, id: string): number { const p = view.players.find((p) => p.id === id);