Skip to content

Commit

Permalink
change disabled to secondary in dropDownSelector
Browse files Browse the repository at this point in the history
  • Loading branch information
panasetskaya committed Dec 16, 2024
1 parent 6513aed commit 988a1cb
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,17 @@ internal object DropdownTokens {
// https://hedviginsurance.slack.com/archives/C03U9C6Q7TP/p1729261859881029?thread_ts=1729253107.272419&cid=C03U9C6Q7TP
val ContainerColor = ColorSchemeKeyTokens.ButtonSecondaryResting
val EnabledChevronColor = ColorSchemeKeyTokens.FillPrimary
val DisabledChevronColor = ColorSchemeKeyTokens.FillDisabled

// todo: disabled - temp color while this is still figured out (bc of ContainerColor above)
val DisabledChevronColor = ColorSchemeKeyTokens.TextSecondary

// val DisabledChevronColor = ColorSchemeKeyTokens.FillDisabled
val TextColor = ColorSchemeKeyTokens.TextPrimary
val DisabledTextColor = ColorSchemeKeyTokens.TextDisabled

// todo: Temp while this is still figured out (bc of ContainerColor above)
val DisabledTextColor = ColorSchemeKeyTokens.TextSecondary

// val DisabledTextColor = ColorSchemeKeyTokens.TextDisabled
val LabelColor = ColorSchemeKeyTokens.TextSecondary
val HintColor = ColorSchemeKeyTokens.TextSecondary
val PulsatingContainerColor = ColorSchemeKeyTokens.SignalAmberFill
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ private fun SelectTierScreenPreview() {
tierDisplayName = "Standard",
) to UiMoney(155.0, SEK),
),
quotesForChosenTier = quotesForPreview,
quotesForChosenTier = listOf(quotesForPreview[0]),
isCurrentChosen = false,
isTierChoiceEnabled = true,
chosenTier = Tier(
Expand Down

0 comments on commit 988a1cb

Please sign in to comment.