From a2c73e02ef8f9ac2551819ec5c7a2153c0703002 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sat, 19 Jul 2025 13:26:39 +0000 Subject: [PATCH] Change color in binary game Change the color of the text in the binary game to a dark shade of red when in binary. --- src/components/BinaryNumberGame.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/BinaryNumberGame.tsx b/src/components/BinaryNumberGame.tsx index 5ebd081..9173231 100644 --- a/src/components/BinaryNumberGame.tsx +++ b/src/components/BinaryNumberGame.tsx @@ -134,7 +134,7 @@ const BinaryNumberGame = () => {

Target Sum

-
+
{!hasGameStarted ? "🎯" : isGameWon ? targetNumber.toString(2) : targetNumber}