Use new theme colors

This commit is contained in:
ismailgulek
2021-05-04 19:21:50 +03:00
parent 88b087b979
commit c2a31b8f1c
@@ -31,13 +31,9 @@ class DialpadActionButton: DialpadButton {
switch type {
case .backspace:
backgroundColor = .clear
if theme.identifier == ThemeIdentifier.light.rawValue {
tintColor = theme.textSecondaryColor
} else {
tintColor = theme.textTertiaryColor
}
tintColor = theme.colors.tertiaryContent
case .call:
backgroundColor = theme.tintColor
backgroundColor = theme.colors.accent
tintColor = .white
}
}