Design feedback from Myles.

pull/1/head
Matthew Chen 7 years ago
parent 8cf5f3e58f
commit ef6689410b

@ -70,13 +70,11 @@ NSString *const ThemeKeyThemeEnabled = @"ThemeKeyThemeEnabled";
+ (UIColor *)boldColor + (UIColor *)boldColor
{ {
// TODO: Review with design.
return (Theme.isDarkThemeEnabled ? UIColor.ows_whiteColor : UIColor.blackColor); return (Theme.isDarkThemeEnabled ? UIColor.ows_whiteColor : UIColor.blackColor);
} }
+ (UIColor *)middleGrayColor + (UIColor *)middleGrayColor
{ {
// TODO: Review with design.
return [UIColor colorWithWhite:0.5f alpha:1.f]; return [UIColor colorWithWhite:0.5f alpha:1.f];
} }
@ -99,8 +97,7 @@ NSString *const ThemeKeyThemeEnabled = @"ThemeKeyThemeEnabled";
+ (UIColor *)navbarIconColor + (UIColor *)navbarIconColor
{ {
// TODO: Theme, Review with design. return (Theme.isDarkThemeEnabled ? UIColor.ows_gray25Color : UIColor.ows_gray60Color);
return (Theme.isDarkThemeEnabled ? UIColor.ows_gray75Color : UIColor.ows_gray60Color);
} }
+ (UIColor *)navbarTitleColor + (UIColor *)navbarTitleColor

Loading…
Cancel
Save