summaryrefslogtreecommitdiff
path: root/Juick/Views/BubbleMessageCell.m
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2019-10-03 13:40:36 +0300
committerGravatar Vitaly Takmazov2019-10-03 13:40:36 +0300
commite7bb615b91d05d25ab84d9ed355a7bfdb0b2a353 (patch)
tree40e286bda2dcf63da55a621ef5647aeef092a796 /Juick/Views/BubbleMessageCell.m
parent6595b63190378554aec6f87ebce83f93698583a7 (diff)
Fix chat and loading colors
Diffstat (limited to 'Juick/Views/BubbleMessageCell.m')
-rw-r--r--Juick/Views/BubbleMessageCell.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Juick/Views/BubbleMessageCell.m b/Juick/Views/BubbleMessageCell.m
index 53c4b2c..f889200 100644
--- a/Juick/Views/BubbleMessageCell.m
+++ b/Juick/Views/BubbleMessageCell.m
@@ -23,7 +23,7 @@
}
-(void) configureWithMessage:(Message *)message isMe:(BOOL)isMe {
- self.message.backgroundColor = isMe ? [UIColor colorNamed:@"Funny"] : [UIColor colorNamed:@"Background"];
+ self.message.backgroundColor = isMe ? [UIColor colorNamed:@"Funny"] : [UIColor colorNamed:@"Chat"];
self.message.textColor = isMe ? [UIColor whiteColor] : [UIColor colorNamed:@"Text"];
self.message.dataDetectorTypes = UIDataDetectorTypeAll;
self.message.tintColor = isMe? [UIColor whiteColor] : [UIColor colorNamed:@"Title"];