Fix icon and text colors on tiles

This commit is contained in:
ismailgulek
2021-04-09 15:23:46 +03:00
parent df6fb91f98
commit 9362c213a5
3 changed files with 5 additions and 6 deletions
@@ -91,10 +91,10 @@ extension CallBubbleCellBaseContentView: Themable {
bgView.backgroundColor = theme.headerBackgroundColor
callerNameLabel.textColor = theme.textPrimaryColor
callIconView.tintColor = theme.textSecondaryColor
callTypeLabel.textColor = theme.textSecondaryColor
dotLabel.textColor = theme.textSecondaryColor
callStatusLabel.textColor = theme.textSecondaryColor
callIconView.tintColor = theme.textTertiaryColor
callTypeLabel.textColor = theme.textTertiaryColor
dotLabel.textColor = theme.textTertiaryColor
callStatusLabel.textColor = theme.textTertiaryColor
if let bottomContainerView = bottomContainerView as? Themable {
bottomContainerView.update(theme: theme)