diff --git a/Signal/src/ViewControllers/PinConfirmationViewController.swift b/Signal/src/ViewControllers/PinConfirmationViewController.swift index 61161e27d9..a7dc90d366 100644 --- a/Signal/src/ViewControllers/PinConfirmationViewController.swift +++ b/Signal/src/ViewControllers/PinConfirmationViewController.swift @@ -23,7 +23,7 @@ public class PinConfirmationViewController: OWSViewController { textField.font = .systemFont(ofSize: 22) textField.textAlignment = .center textField.isSecureTextEntry = true - textField.backgroundColor = .Signal.background + textField.backgroundColor = .Signal.secondaryGroupedBackground textField.defaultTextAttributes.updateValue(5, forKey: .kern) textField.accessibilityIdentifier = "pinConfirmation.pinTextField" textField.delegate = self diff --git a/Signal/src/ViewControllers/PinReminderViewController.swift b/Signal/src/ViewControllers/PinReminderViewController.swift index ab73820ca7..84824cf494 100644 --- a/Signal/src/ViewControllers/PinReminderViewController.swift +++ b/Signal/src/ViewControllers/PinReminderViewController.swift @@ -26,7 +26,7 @@ public class PinReminderViewController: OWSViewController { textField.font = .systemFont(ofSize: 22) textField.textAlignment = .center textField.isSecureTextEntry = true - textField.backgroundColor = .Signal.background + textField.backgroundColor = .Signal.secondaryGroupedBackground textField.defaultTextAttributes.updateValue(5, forKey: .kern) textField.accessibilityIdentifier = "pinReminder.pinTextField" textField.delegate = self diff --git a/Signal/src/ViewControllers/PinSetupViewController.swift b/Signal/src/ViewControllers/PinSetupViewController.swift index 7b34e0b98d..a461a2e1c6 100644 --- a/Signal/src/ViewControllers/PinSetupViewController.swift +++ b/Signal/src/ViewControllers/PinSetupViewController.swift @@ -78,7 +78,7 @@ public class PinSetupViewController: OWSViewController, OWSNavigationChildContro if #available(iOS 26, *) { textField.tintColor = .Signal.label } - textField.backgroundColor = .Signal.background + textField.backgroundColor = .Signal.secondaryGroupedBackground textField.font = .systemFont(ofSize: 22) textField.textContentType = .password textField.isSecureTextEntry = true