From 5dde45bebf3841ffa0d170258c3f9c757f88ddd2 Mon Sep 17 00:00:00 2001 From: spencrmartin Date: Thu, 25 Sep 2025 13:32:46 -0400 Subject: [PATCH] Update text selection to custom light blue color #BBD6FB - Changed selection background to #BBD6FB for softer, more pleasant highlighting - Provides excellent visibility while being gentle on the eyes - Custom blue tone as requested by user --- 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 5985c7f5b6..c3246b82fb 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: #60a5fa !important; /* Lighter blue selection */ + background-color: #BBD6FB !important; /* Custom light blue selection */ color: transparent !important; /* Keep text transparent even when selected */ } .rich-text-input textarea::-moz-selection { - background-color: #60a5fa !important; /* Lighter blue selection */ + background-color: #BBD6FB !important; /* Custom light blue selection */ color: transparent !important; /* Keep text transparent even when selected */ } `