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:
parent
822890a461
commit
0c19a83999
1 changed files with 4 additions and 4 deletions
|
|
@ -206,15 +206,15 @@ const PebblePlacementGame: React.FC<PebblePlacementGameProps> = ({ showSocialSha
|
||||||
{gameStarted && pebblesInHand === 0 && (
|
{gameStarted && pebblesInHand === 0 && (
|
||||||
<div className="text-center p-4 bg-accent rounded-lg">
|
<div className="text-center p-4 bg-accent rounded-lg">
|
||||||
<h3 className="text-lg font-semibold">All pebbles placed!</h3>
|
<h3 className="text-lg font-semibold">All pebbles placed!</h3>
|
||||||
<p className="text-muted-foreground">
|
<p className="text-accent-foreground">
|
||||||
Your furthest position: <span className="font-semibold text-foreground">{furthestReached}</span>
|
Your furthest position: <span className="font-semibold text-accent-foreground">{furthestReached}</span>
|
||||||
</p>
|
</p>
|
||||||
{hasAnyRemovablePebble() ? (
|
{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!
|
You can still rearrange your pebbles to try reaching further!
|
||||||
</p>
|
</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!
|
No more moves possible - great job!
|
||||||
</p>
|
</p>
|
||||||
)}
|
)}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue