From a56a16411f405e3ed29404b12aa5c63c01461681 Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Wed, 8 Aug 2018 10:17:31 -0400 Subject: [PATCH] Refine theme. --- Signal/src/views/QuotedReplyPreview.swift | 2 +- SignalMessaging/categories/Theme.m | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Signal/src/views/QuotedReplyPreview.swift b/Signal/src/views/QuotedReplyPreview.swift index bda592916..b1f0f3c84 100644 --- a/Signal/src/views/QuotedReplyPreview.swift +++ b/Signal/src/views/QuotedReplyPreview.swift @@ -53,7 +53,7 @@ class QuotedReplyPreview: UIView { let buttonImage: UIImage = #imageLiteral(resourceName: "quoted-message-cancel").withRenderingMode(.alwaysTemplate) cancelButton.setImage(buttonImage, for: .normal) - cancelButton.imageView?.tintColor = .darkGray + cancelButton.imageView?.tintColor = Theme.secondaryColor cancelButton.addTarget(self, action: #selector(didTapCancel), for: .touchUpInside) self.layoutMargins = .zero diff --git a/SignalMessaging/categories/Theme.m b/SignalMessaging/categories/Theme.m index 93c5f7992..ebd053ade 100644 --- a/SignalMessaging/categories/Theme.m +++ b/SignalMessaging/categories/Theme.m @@ -109,7 +109,7 @@ NSString *const ThemeKeyThemeEnabled = @"ThemeKeyThemeEnabled"; + (UIColor *)conversationButtonBackgroundColor { - return (Theme.isDarkThemeEnabled ? [UIColor colorWithWhite:0.3f alpha:1.f] : UIColor.ows_light02Color); + return (Theme.isDarkThemeEnabled ? [UIColor colorWithWhite:0.35f alpha:1.f] : UIColor.ows_light02Color); } #pragma mark -