fix: use white text for selected dropdown items in dark mode

Selected dropdown items now use maximum contrast in dark mode:
- Primary text: white (was brand.200)
- Secondary text: gray.200 (was brand.300)

This ensures selected items stand out clearly against the gray.700
background with optimal readability.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Thomas Hallock
2025-11-11 05:34:44 -06:00
parent 8d0345287f
commit e1a73758d6

View File

@@ -398,7 +398,7 @@ export function OrientationPanel({
fontWeight: 'semibold',
color: isSelected
? isDark
? 'brand.200'
? 'white'
: 'brand.700'
: isDark
? 'gray.200'
@@ -412,7 +412,7 @@ export function OrientationPanel({
fontSize: 'xs',
color: isSelected
? isDark
? 'brand.300'
? 'gray.200'
: 'brand.600'
: isDark
? 'gray.400'