mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-18 07:28:28 +02:00
MESSENGER-4966 color changes login flow and all chat
This commit is contained in:
committed by
Arnfried Griesert
parent
c62942c44e
commit
867a5fea98
@@ -97,8 +97,15 @@ final class SetupBiometricsViewController: UIViewController {
|
||||
self.subtitleLabel.textColor = theme.textSecondaryColor
|
||||
|
||||
self.enableButton.backgroundColor = theme.tintColor
|
||||
self.enableButton.tintColor = theme.baseTextPrimaryColor
|
||||
self.enableButton.setTitleColor(theme.baseTextPrimaryColor, for: .normal)
|
||||
// BWI: #4966
|
||||
|
||||
if BWIBuildSettings.shared.useNewBumColors {
|
||||
self.enableButton.tintColor = theme.backgroundColor
|
||||
self.enableButton.setTitleColor(theme.backgroundColor, for: .normal)
|
||||
} else {
|
||||
self.enableButton.tintColor = theme.baseTextPrimaryColor
|
||||
self.enableButton.setTitleColor(theme.baseTextPrimaryColor, for: .normal)
|
||||
}
|
||||
}
|
||||
|
||||
private func registerThemeServiceDidChangeThemeNotification() {
|
||||
|
||||
Reference in New Issue
Block a user