mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-05-19 08:22:00 +00:00
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:
parent
d9c0381439
commit
e7ff9185fe
1 changed files with 3 additions and 3 deletions
|
|
@ -28,8 +28,8 @@ object NuvioColors {
|
|||
val TextDisabled = Color(0xFF4D4D4D)
|
||||
|
||||
// Focus states - Critical for TV navigation
|
||||
val FocusRing = Color(0xFFBDBDBD)
|
||||
val FocusBackground = Color(0xFF2B2B2B)
|
||||
val FocusRing = Color(0xFF00E5CC) // Bright teal for high visibility
|
||||
val FocusBackground = Color(0xFF1A3D38) // Dark teal background
|
||||
|
||||
// Status colors
|
||||
val Rating = Color(0xFFFFD700)
|
||||
|
|
@ -38,5 +38,5 @@ object NuvioColors {
|
|||
|
||||
// Borders
|
||||
val Border = Color(0xFF333333)
|
||||
val BorderFocused = Color(0xFFBDBDBD)
|
||||
val BorderFocused = Color(0xFF00E5CC) // Bright teal for high visibility
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue