Update bg color for backspace button

This commit is contained in:
ismailgulek
2021-04-29 12:08:51 +03:00
parent 30efaaf597
commit d065539521
@@ -31,7 +31,11 @@ class DialpadActionButton: DialpadButton {
switch type {
case .backspace:
backgroundColor = .clear
tintColor = theme.noticeSecondaryColor
if theme.identifier == ThemeIdentifier.light.rawValue {
tintColor = theme.textSecondaryColor
} else {
tintColor = theme.textTertiaryColor
}
case .call:
backgroundColor = theme.tintColor
tintColor = .white