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
This commit is contained in:
spencrmartin
2025-09-25 13:32:46 -04:00
committed by Alex Hancock
parent 64f102126c
commit 5dde45bebf
+2 -2
View File
@@ -1027,12 +1027,12 @@ export const RichChatInput = forwardRef<RichChatInputRef, RichChatInputProps>(({
}
.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 */
}
`