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
This commit is contained in:
spencrmartin
2025-09-25 13:31:30 -04:00
parent 433a6f175b
commit 72505ecfa0
+2 -2
View File
@@ -1027,12 +1027,12 @@ export const RichChatInput = forwardRef<RichChatInputRef, RichChatInputProps>(({
}
.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 */
}
`