mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-05-19 16:31:44 +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)
|
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
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue