Skip to content

Commit

Permalink
fix: Title Color on Primary Button
Browse files Browse the repository at this point in the history
  • Loading branch information
BunsDev committed Aug 27, 2023
1 parent a067171 commit d157608
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Sources/SoulSwapComponentKit/Classes/Buttons/PrimaryButton.swift
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,13 @@ open class PrimaryButton: UIButton {
setTitleColor(.themeDark, for: .highlighted)
setTitleColor(.themeGray50, for: .disabled)
case .purpleDark:
setTitleColor(.themePurpleD, for: .normal)
setTitleColor(.themePurpleD, for: .highlighted)
setTitleColor(.themePurple50, for: .disabled)
setTitleColor(.themeDark, for: .normal)
setTitleColor(.themeDark, for: .highlighted)
setTitleColor(.themeGray50, for: .disabled)
case .purpleLight:
setTitleColor(.themePurpleL, for: .normal)
setTitleColor(.themePurpleL, for: .highlighted)
setTitleColor(.themeLightPurple50, for: .disabled)
setTitleColor(.themeDark, for: .normal)
setTitleColor(.themeDark, for: .highlighted)
setTitleColor(.themeGray50, for: .disabled)
case .red, .gray:
setTitleColor(.themeClaude, for: .normal)
setTitleColor(.themeClaude, for: .highlighted)
Expand Down

0 comments on commit d157608

Please sign in to comment.