From 629d1c7a55c2f6d795d6e63c16e806374197c062 Mon Sep 17 00:00:00 2001 From: Audiino <121476415+Audiino@users.noreply.github.com> Date: Sat, 17 May 2025 11:48:22 +0800 Subject: [PATCH] changed scrabble board colors --- src/ps/games/scrabble/render.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/ps/games/scrabble/render.tsx b/src/ps/games/scrabble/render.tsx index 6847c6ba..39f077ef 100644 --- a/src/ps/games/scrabble/render.tsx +++ b/src/ps/games/scrabble/render.tsx @@ -61,7 +61,7 @@ export function renderMove( type This = { msg: string }; -const LETTER_HEX = '#dc6'; +const LETTER_HEX = '#da5'; const BASE_MARGIN = 12; const BASE_PADDING = 8; @@ -76,13 +76,13 @@ function getBackgroundHex(bonus: Bonus | null): string { switch (bonus) { case '2*': case '2W': - return '#fba'; + return '#ecc'; case '2L': - return '#bcd'; + return '#bdd'; case '3W': - return '#f65'; + return '#e65'; case '3L': - return '#59a'; + return '#49a'; default: return '#cca'; } @@ -144,7 +144,7 @@ function renderBoard(this: This, ctx: RenderCtx) { }; return ( -