From b2f42adb865657d3458dec16e620f3861a78d0a8 Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Fri, 13 Jul 2018 09:32:30 -0400 Subject: [PATCH] Respond to CR. --- Signal/src/ViewControllers/HomeView/HomeViewCell.m | 2 +- SignalMessaging/categories/UIColor+OWS.m | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Signal/src/ViewControllers/HomeView/HomeViewCell.m b/Signal/src/ViewControllers/HomeView/HomeViewCell.m index e42e7bb3d..5dc1246e8 100644 --- a/Signal/src/ViewControllers/HomeView/HomeViewCell.m +++ b/Signal/src/ViewControllers/HomeView/HomeViewCell.m @@ -274,7 +274,7 @@ NS_ASSUME_NONNULL_BEGIN }]; } else { UIImage *_Nullable statusIndicatorImage = nil; - // TODO: Review with design. + // TODO: Theme, Review with design. UIColor *messageStatusViewTintColor = (UIColor.isThemeEnabled ? [UIColor ows_dark30Color] : [UIColor ows_light35Color]); BOOL shouldAnimateStatusIcon = NO; diff --git a/SignalMessaging/categories/UIColor+OWS.m b/SignalMessaging/categories/UIColor+OWS.m index d08d9d433..6f92a6fa4 100644 --- a/SignalMessaging/categories/UIColor+OWS.m +++ b/SignalMessaging/categories/UIColor+OWS.m @@ -28,13 +28,13 @@ NSString *const UIColorKeyThemeEnabled = @"UIColorKeyThemeEnabled"; + (UIColor *)ows_navbarIconColor { - // TODO: Review with design. + // TODO: Theme, Review with design. return (UIColor.isThemeEnabled ? UIColor.ows_dark60Color : UIColor.ows_light60Color); } + (UIColor *)ows_navbarTitleColor { - // TODO: Review with design. + // TODO: Theme, Review with design. return (UIColor.isThemeEnabled ? UIColor.ows_dark60Color : UIColor.ows_light60Color); } @@ -382,13 +382,13 @@ NSString *const UIColorKeyThemeEnabled = @"UIColorKeyThemeEnabled"; + (UIColor *)ows_themeForegroundColor { - // TODO: Review with design. + // TODO: Theme, Review with design. return (UIColor.isThemeEnabled ? UIColor.ows_whiteColor : UIColor.ows_light90Color); } + (UIColor *)ows_themeSecondaryColor { - // TODO: Review with design. + // TODO: Theme, Review with design. return (UIColor.isThemeEnabled ? UIColor.ows_dark60Color : UIColor.ows_light60Color); }