Fix font color

Change font color to white for the "Flipped bit at position" text.
This commit is contained in:
gpt-engineer-app[bot] 2025-08-22 17:47:12 +00:00
parent 4b5586ec82
commit 47bf4eb49b

View file

@ -413,7 +413,7 @@ const ParityBitsGame = ({ showSocialShare = true }: ParityBitsGameProps) => {
Parity cells have colored borders. Each row and column should have an even number of black squares.
</p>
{flippedCell && (
<p className="text-sm text-destructive">
<p className="text-sm text-white">
Flipped bit at position ({flippedCell.row + 1}, {flippedCell.col + 1})
</p>
)}