diff options
author | Vitaly Takmazov | 2019-12-10 11:17:49 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2019-12-10 11:17:49 +0300 |
commit | 67708bf6ce27c95eb4f24edcbec0741dbf608c2c (patch) | |
tree | 8691b836780ac130674a9963e224f74d4a16e422 /Juick | |
parent | 925072af5ee9febc3cbefed45505f4857eb88e5e (diff) |
Blue bubbles
Diffstat (limited to 'Juick')
-rw-r--r-- | Juick/Colors.xcassets/Title.colorset/Contents.json | 12 | ||||
-rw-r--r-- | Juick/Views/BubbleMessageCell.m | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/Juick/Colors.xcassets/Title.colorset/Contents.json b/Juick/Colors.xcassets/Title.colorset/Contents.json index be55d4c..a4fe308 100644 --- a/Juick/Colors.xcassets/Title.colorset/Contents.json +++ b/Juick/Colors.xcassets/Title.colorset/Contents.json @@ -9,10 +9,10 @@ "color" : { "color-space" : "srgb", "components" : { - "red" : "0x00", + "red" : "0x3C", "alpha" : "1.000", - "blue" : "0x99", - "green" : "0x66" + "blue" : "0xAA", + "green" : "0x77" } } }, @@ -27,10 +27,10 @@ "color" : { "color-space" : "srgb", "components" : { - "red" : "0.765", + "red" : "0xC3", "alpha" : "1.000", - "blue" : "0.333", - "green" : "0.533" + "blue" : "0x55", + "green" : "0x88" } } } diff --git a/Juick/Views/BubbleMessageCell.m b/Juick/Views/BubbleMessageCell.m index f889200..65d3c0c 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:@"Chat"]; + self.message.backgroundColor = isMe ? [UIColor colorNamed:@"Title"] : [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"]; |