Use new theme colors

This commit is contained in:
ismailgulek
2021-05-04 19:21:50 +03:00
parent 4ac2722c0b
commit e5c1a7d369
@@ -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
}
}