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
This commit is contained in:
gpt-engineer-app[bot] 2025-08-21 10:56:28 +00:00
parent 822890a461
commit 0c19a83999

View file

@ -206,15 +206,15 @@ const PebblePlacementGame: React.FC<PebblePlacementGameProps> = ({ showSocialSha
{gameStarted && pebblesInHand === 0 && (
<div className="text-center p-4 bg-accent rounded-lg">
<h3 className="text-lg font-semibold">All pebbles placed!</h3>
<p className="text-muted-foreground">
Your furthest position: <span className="font-semibold text-foreground">{furthestReached}</span>
<p className="text-accent-foreground">
Your furthest position: <span className="font-semibold text-accent-foreground">{furthestReached}</span>
</p>
{hasAnyRemovablePebble() ? (
<p className="text-sm text-muted-foreground mt-2">
<p className="text-sm text-accent-foreground mt-2">
You can still rearrange your pebbles to try reaching further!
</p>
) : (
<p className="text-sm text-muted-foreground mt-2">
<p className="text-sm text-accent-foreground mt-2">
No more moves possible - great job!
</p>
)}