diff --git a/Signal/src/ViewControllers/HomeView/HomeViewCell.m b/Signal/src/ViewControllers/HomeView/HomeViewCell.m index e6e88f715..6d4e9731c 100644 --- a/Signal/src/ViewControllers/HomeView/HomeViewCell.m +++ b/Signal/src/ViewControllers/HomeView/HomeViewCell.m @@ -65,6 +65,11 @@ NS_ASSUME_NONNULL_BEGIN _viewConstraints = [NSMutableArray new]; + UIView *selectedBackgroundView = [UIView new]; + selectedBackgroundView.backgroundColor = [[UIColor colorWithRGBHex:0x000000] colorWithAlphaComponent:0.08]; + + self.selectedBackgroundView = selectedBackgroundView; + self.avatarView = [[AvatarImageView alloc] init]; [self.contentView addSubview:self.avatarView]; [self.avatarView autoSetDimension:ALDimensionWidth toSize:self.avatarSize]; diff --git a/SignalMessaging/categories/UIColor+OWS.h b/SignalMessaging/categories/UIColor+OWS.h index c412210d9..419b20bc5 100644 --- a/SignalMessaging/categories/UIColor+OWS.h +++ b/SignalMessaging/categories/UIColor+OWS.h @@ -45,7 +45,7 @@ NS_ASSUME_NONNULL_BEGIN - (UIColor *)blendWithColor:(UIColor *)otherColor alpha:(CGFloat)alpha; -#pragma mark - +#pragma mark - Color Palette @property (class, readonly, nonatomic) UIColor *ows_signalBlueColor; @property (class, readonly, nonatomic) UIColor *ows_greenColor; diff --git a/SignalMessaging/categories/UIColor+OWS.m b/SignalMessaging/categories/UIColor+OWS.m index 45470a908..3c979ad8c 100644 --- a/SignalMessaging/categories/UIColor+OWS.m +++ b/SignalMessaging/categories/UIColor+OWS.m @@ -147,7 +147,7 @@ NS_ASSUME_NONNULL_BEGIN alpha:CGFloatLerp(a0, a1, alpha)]; } -#pragma mark - New Colors +#pragma mark - Color Palette + (UIColor *)ows_signalBlueColor {