From 55844ea1183172e0b2b822debdd6c8d8a010305e Mon Sep 17 00:00:00 2001 From: neoapps-dev Date: Sun, 14 Jun 2026 20:31:23 +0300 Subject: [PATCH] fix: better inactive color --- src/components/views/SettingsView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/views/SettingsView.tsx b/src/components/views/SettingsView.tsx index ea340b3..d4144be 100644 --- a/src/components/views/SettingsView.tsx +++ b/src/components/views/SettingsView.tsx @@ -804,7 +804,7 @@ const SettingsView = memo(function SettingsView() { data-index={index} onMouseEnter={() => setFocusIndex(index)} className={`w-[600px] flex items-center gap-3 px-4 py-3 cursor-pointer outline-none border-none ${ - isFocused ? "text-[#ffff00]" : "text-[#333333]" + isFocused ? "text-[#ffff00]" : "text-[#FFFFFF]" }`} style={{ backgroundImage: "url('/images/Button_Background2.png')",