Skip to content

Commit

Permalink
T15261333 IOS-8225 Fixed status color of Good password strength
Browse files Browse the repository at this point in the history
(cherry picked from commit fef5acf)
  • Loading branch information
gmagpayo committed Mar 11, 2024
1 parent 35af4bd commit bb48876
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ extension PasswordStrengthIndicatorView {
case .medium:
labelColor = UIColor.isDesignTokenEnabled() ? TokenColors.Indicator.green : UIColor.systemGreen
case .good:
labelColor = UIColor.isDesignTokenEnabled() ? TokenColors.Indicator.green : UIColor(red: 18.0/255/0, green: 210.0/255.0, blue: 56.0/255.0, alpha: 1.0)
labelColor = UIColor.isDesignTokenEnabled() ? TokenColors.Indicator.green : UIColor.systemGreen
case .strong:
labelColor = UIColor.isDesignTokenEnabled() ? TokenColors.Indicator.blue : UIColor.mnz_blue(for: traitCollection)
@unknown default:
Expand Down

0 comments on commit bb48876

Please sign in to comment.