mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-05-19 16:31:44 +00:00
Fix FilterChip selected state to use teal accent color
- Change selectedContainerColor from gray to teal with 30% alpha - Change selectedContentColor from gray to teal - Maintain existing bright teal focus border - Improves visual distinction between selected/unselected states
This commit is contained in:
parent
dbf45f982f
commit
95ee3d1350
1 changed files with 4 additions and 4 deletions
|
|
@ -409,12 +409,12 @@ private fun AddonChip(
|
|||
},
|
||||
colors = FilterChipDefaults.colors(
|
||||
containerColor = NuvioColors.BackgroundCard,
|
||||
focusedContainerColor = NuvioColors.Primary,
|
||||
selectedContainerColor = NuvioColors.Primary.copy(alpha = 0.3f),
|
||||
focusedSelectedContainerColor = NuvioColors.Primary,
|
||||
focusedContainerColor = NuvioColors.Secondary,
|
||||
selectedContainerColor = NuvioColors.Secondary.copy(alpha = 0.3f),
|
||||
focusedSelectedContainerColor = NuvioColors.Secondary,
|
||||
contentColor = NuvioColors.TextSecondary,
|
||||
focusedContentColor = NuvioColors.OnPrimary,
|
||||
selectedContentColor = NuvioColors.Primary,
|
||||
selectedContentColor = NuvioColors.Secondary,
|
||||
focusedSelectedContentColor = NuvioColors.OnPrimary
|
||||
),
|
||||
border = FilterChipDefaults.border(
|
||||
|
|
|
|||
Loading…
Reference in a new issue