feat(ui): standardize FOCUS color to Blue across all themes and selection components

This commit is contained in:
Keith Guerin
2026-02-27 11:55:20 -08:00
parent 81cd2561dc
commit 9efa855642
9 changed files with 51 additions and 13 deletions

View File

@@ -84,7 +84,7 @@ export function SuggestionsDisplay({
const originalIndex = startIndex + index;
const isActive = originalIndex === activeIndex;
const isExpanded = originalIndex === expandedIndex;
const textColor = isActive ? theme.text.accent : theme.text.secondary;
const textColor = isActive ? theme.ui.focus : theme.text.secondary;
const isLong = suggestion.value.length >= MAX_WIDTH;
const labelElement = (
<ExpandableText