From 72505ecfa0825b1d117298281f81c602e97ba8fd Mon Sep 17 00:00:00 2001 From: spencrmartin Date: Thu, 25 Sep 2025 13:31:30 -0400 Subject: [PATCH] Lighten text selection blue color for better visibility - Changed selection background from #3b82f6 (blue-500) to #60a5fa (blue-400) - Provides lighter, more subtle selection highlighting - Maintains clear selection feedback while being easier on the eyes --- ui/desktop/src/components/RichChatInput.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/desktop/src/components/RichChatInput.tsx b/ui/desktop/src/components/RichChatInput.tsx index 0bdad5ea2f..5985c7f5b6 100644 --- a/ui/desktop/src/components/RichChatInput.tsx +++ b/ui/desktop/src/components/RichChatInput.tsx @@ -1027,12 +1027,12 @@ export const RichChatInput = forwardRef(({ } .rich-text-input textarea::selection { - background-color: #3b82f6 !important; /* Blue selection */ + background-color: #60a5fa !important; /* Lighter blue selection */ color: transparent !important; /* Keep text transparent even when selected */ } .rich-text-input textarea::-moz-selection { - background-color: #3b82f6 !important; /* Blue selection */ + background-color: #60a5fa !important; /* Lighter blue selection */ color: transparent !important; /* Keep text transparent even when selected */ } `