From c780023d633814d79abf267e09a19116b8a05e0f Mon Sep 17 00:00:00 2001 From: Niels Andriesse Date: Wed, 11 Sep 2019 10:34:51 +1000 Subject: [PATCH] Fix quote UI --- SignalMessaging/utils/ConversationStyle.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SignalMessaging/utils/ConversationStyle.swift b/SignalMessaging/utils/ConversationStyle.swift index 3009c21d7..ebaf7fe5e 100644 --- a/SignalMessaging/utils/ConversationStyle.swift +++ b/SignalMessaging/utils/ConversationStyle.swift @@ -225,9 +225,9 @@ public class ConversationStyle: NSObject { public func quotedReplyBubbleColor(isIncoming: Bool) -> UIColor { if Theme.isDarkThemeEnabled { if isIncoming { - return UIColor(rgbHex: 0x1976D2).withAlphaComponent(0.75) + return UIColor.lokiGreen().withAlphaComponent(0.75) } else { - return UIColor.ows_black.withAlphaComponent(0.4) + return UIColor.lokiDarkestGray().withAlphaComponent(0.4) } } else if isIncoming { return bubbleColorOutgoingSent.withAlphaComponent(0.25) @@ -240,9 +240,9 @@ public class ConversationStyle: NSObject { public func quotedReplyStripeColor(isIncoming: Bool) -> UIColor { if Theme.isDarkThemeEnabled { if isIncoming { - return UIColor(rgbHex: 0x1976D2) + return UIColor.lokiGreen() } else { - return UIColor.ows_black + return UIColor.lokiDarkestGray() } } else if isIncoming { return bubbleColorOutgoingSent