Fix quote UI

pull/49/head
Niels Andriesse 6 years ago
parent aa7ff398db
commit c780023d63

@ -225,9 +225,9 @@ public class ConversationStyle: NSObject {
public func quotedReplyBubbleColor(isIncoming: Bool) -> UIColor { public func quotedReplyBubbleColor(isIncoming: Bool) -> UIColor {
if Theme.isDarkThemeEnabled { if Theme.isDarkThemeEnabled {
if isIncoming { if isIncoming {
return UIColor(rgbHex: 0x1976D2).withAlphaComponent(0.75) return UIColor.lokiGreen().withAlphaComponent(0.75)
} else { } else {
return UIColor.ows_black.withAlphaComponent(0.4) return UIColor.lokiDarkestGray().withAlphaComponent(0.4)
} }
} else if isIncoming { } else if isIncoming {
return bubbleColorOutgoingSent.withAlphaComponent(0.25) return bubbleColorOutgoingSent.withAlphaComponent(0.25)
@ -240,9 +240,9 @@ public class ConversationStyle: NSObject {
public func quotedReplyStripeColor(isIncoming: Bool) -> UIColor { public func quotedReplyStripeColor(isIncoming: Bool) -> UIColor {
if Theme.isDarkThemeEnabled { if Theme.isDarkThemeEnabled {
if isIncoming { if isIncoming {
return UIColor(rgbHex: 0x1976D2) return UIColor.lokiGreen()
} else { } else {
return UIColor.ows_black return UIColor.lokiDarkestGray()
} }
} else if isIncoming { } else if isIncoming {
return bubbleColorOutgoingSent return bubbleColorOutgoingSent

Loading…
Cancel
Save