Update focus colors to bright teal for better visibility

- Changed FocusRing from subtle grey (#BDBDBD) to bright teal (#00E5CC)
- Changed FocusBackground from dark grey (#2B2B2B) to dark teal (#1A3D38)
- Changed BorderFocused to match FocusRing for consistency
- Improves focus clarity on Android TV with high contrast colors
This commit is contained in:
CrissZollo 2026-02-01 23:25:10 +01:00
parent d9c0381439
commit e7ff9185fe

View file

@ -28,8 +28,8 @@ object NuvioColors {
val TextDisabled = Color(0xFF4D4D4D) val TextDisabled = Color(0xFF4D4D4D)
// Focus states - Critical for TV navigation // Focus states - Critical for TV navigation
val FocusRing = Color(0xFFBDBDBD) val FocusRing = Color(0xFF00E5CC) // Bright teal for high visibility
val FocusBackground = Color(0xFF2B2B2B) val FocusBackground = Color(0xFF1A3D38) // Dark teal background
// Status colors // Status colors
val Rating = Color(0xFFFFD700) val Rating = Color(0xFFFFD700)
@ -38,5 +38,5 @@ object NuvioColors {
// Borders // Borders
val Border = Color(0xFF333333) val Border = Color(0xFF333333)
val BorderFocused = Color(0xFFBDBDBD) val BorderFocused = Color(0xFF00E5CC) // Bright teal for high visibility
} }