From 0c19a839991f0b034c58240d2fdf447a6a5685f3 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Thu, 21 Aug 2025 10:56:28 +0000 Subject: [PATCH] Change grey text to white Updated the text color in the "All pebbles placed!" message from grey to white in `src/components/PebblePlacementGame.tsx`. Here are the files that were edited by the AI in that message: -edited src/components/PebblePlacementGame.tsx --- src/components/PebblePlacementGame.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/PebblePlacementGame.tsx b/src/components/PebblePlacementGame.tsx index ebb3fbc..b186e8c 100644 --- a/src/components/PebblePlacementGame.tsx +++ b/src/components/PebblePlacementGame.tsx @@ -206,15 +206,15 @@ const PebblePlacementGame: React.FC = ({ showSocialSha {gameStarted && pebblesInHand === 0 && (

All pebbles placed!

-

- Your furthest position: {furthestReached} +

+ Your furthest position: {furthestReached}

{hasAnyRemovablePebble() ? ( -

+

You can still rearrange your pebbles to try reaching further!

) : ( -

+

No more moves possible - great job!

)}