From 1442e350ae65d1869aa86b897901886f8a394c1d Mon Sep 17 00:00:00 2001
From: Yash Kumar <219265056+firoziya@users.noreply.github.com>
Date: Thu, 4 Jun 2026 16:46:35 +0530
Subject: [PATCH] Make Moon icon color dynamic in Navbar
Updated Moon icon to have dynamic color based on mode.
---
src/components/Navbar.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx
index fd5eac86..fb028655 100644
--- a/src/components/Navbar.tsx
+++ b/src/components/Navbar.tsx
@@ -83,7 +83,7 @@ const Navbar: React.FC = () => {
{mode === "dark" ? (
) : (
-
+ // ✅ Dynamic color
)}