session-ios/SignalMessaging/categories/UIColor+OWS.m
2018-07-09 16:31:43 -04:00

344 lines
7.3 KiB
Objective-C

//
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
//
#import "UIColor+OWS.h"
#import "OWSMath.h"
#import <SignalServiceKit/Cryptography.h>
NS_ASSUME_NONNULL_BEGIN
@implementation UIColor (OWS)
#pragma mark - Global App Colors
+ (UIColor *)ows_navbarBackgroundColor
{
return UIColor.ows_whiteColor;
}
+ (UIColor *)ows_navbarIconColor
{
return UIColor.ows_light60Color;
}
+ (UIColor *)ows_navbarTitleColor
{
return UIColor.ows_light90Color;
}
#pragma mark -
+ (UIColor *)ows_signalBrandBlueColor
{
return [UIColor colorWithRed:0.1135657504 green:0.4787300229 blue:0.89595204589999999 alpha:1.];
}
+ (UIColor *)ows_materialBlueColor
{
// blue: #2090EA
return [UIColor colorWithRed:32.f / 255.f green:144.f / 255.f blue:234.f / 255.f alpha:1.f];
}
+ (UIColor *)ows_darkIconColor
{
return [UIColor colorWithRGBHex:0x505050];
}
+ (UIColor *)ows_darkGrayColor
{
return [UIColor colorWithRed:81.f / 255.f green:81.f / 255.f blue:81.f / 255.f alpha:1.f];
}
+ (UIColor *)ows_darkBackgroundColor
{
return [UIColor colorWithRed:35.f / 255.f green:31.f / 255.f blue:32.f / 255.f alpha:1.f];
}
+ (UIColor *)ows_fadedBlueColor
{
// blue: #B6DEF4
return [UIColor colorWithRed:182.f / 255.f green:222.f / 255.f blue:244.f / 255.f alpha:1.f];
}
+ (UIColor *)ows_yellowColor
{
// gold: #FFBB5C
return [UIColor colorWithRed:245.f / 255.f green:186.f / 255.f blue:98.f / 255.f alpha:1.f];
}
+ (UIColor *)ows_reminderYellowColor
{
return [UIColor colorWithRed:252.f / 255.f green:240.f / 255.f blue:217.f / 255.f alpha:1.f];
}
+ (UIColor *)ows_reminderDarkYellowColor
{
return [UIColor colorWithRGBHex:0xFCDA91];
}
+ (UIColor *)ows_destructiveRedColor
{
return [UIColor colorWithRGBHex:0xF44336];
}
+ (UIColor *)ows_errorMessageBorderColor
{
return [UIColor colorWithRed:195.f / 255.f green:0 blue:22.f / 255.f alpha:1.0f];
}
+ (UIColor *)ows_infoMessageBorderColor
{
return [UIColor colorWithRed:239.f / 255.f green:189.f / 255.f blue:88.f / 255.f alpha:1.0f];
}
+ (UIColor *)ows_toolbarBackgroundColor
{
return self.ows_navbarBackgroundColor;
}
+ (UIColor *)ows_lightBackgroundColor
{
return [UIColor colorWithRed:242.f / 255.f green:242.f / 255.f blue:242.f / 255.f alpha:1.f];
}
+ (UIColor *)ows_systemPrimaryButtonColor
{
static UIColor *sharedColor;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^(void) {
sharedColor = [UIView new].tintColor;
});
return sharedColor;
}
+ (UIColor *)ows_messageBubbleLightGrayColor
{
return [UIColor colorWithHue:240.0f / 360.0f saturation:0.02f brightness:0.92f alpha:1.0f];
}
+ (UIColor *)colorWithRGBHex:(unsigned long)value
{
CGFloat red = ((value >> 16) & 0xff) / 255.f;
CGFloat green = ((value >> 8) & 0xff) / 255.f;
CGFloat blue = ((value >> 0) & 0xff) / 255.f;
return [UIColor colorWithRed:red green:green blue:blue alpha:1.f];
}
- (UIColor *)blendWithColor:(UIColor *)otherColor alpha:(CGFloat)alpha
{
CGFloat r0, g0, b0, a0;
#ifdef DEBUG
BOOL result =
#endif
[self getRed:&r0 green:&g0 blue:&b0 alpha:&a0];
OWSAssert(result);
CGFloat r1, g1, b1, a1;
#ifdef DEBUG
result =
#endif
[otherColor getRed:&r1 green:&g1 blue:&b1 alpha:&a1];
OWSAssert(result);
return [UIColor colorWithRed:CGFloatLerp(r0, r1, alpha)
green:CGFloatLerp(g0, g1, alpha)
blue:CGFloatLerp(b0, b1, alpha)
alpha:CGFloatLerp(a0, a1, alpha)];
}
#pragma mark - New Colors
+ (UIColor *)ows_signalBlueColor
{
return [UIColor colorWithRGBHex:0x2090EA];
}
+ (UIColor *)ows_greenColor
{
return [UIColor colorWithRGBHex:0x4caf50];
}
+ (UIColor *)ows_redColor
{
return [UIColor colorWithRGBHex:0xf44336];
}
+ (UIColor *)ows_whiteColor
{
return [UIColor colorWithRGBHex:0xFFFFFF];
}
+ (UIColor *)ows_light02Color
{
return [UIColor colorWithRGBHex:0xF9FAFA];
}
+ (UIColor *)ows_light10Color
{
return [UIColor colorWithRGBHex:0xEEEFEF];
}
+ (UIColor *)ows_light35Color
{
return [UIColor colorWithRGBHex:0xA4A6A9];
}
+ (UIColor *)ows_light45Color
{
return [UIColor colorWithRGBHex:0x8B8E91];
}
+ (UIColor *)ows_light60Color
{
return [UIColor colorWithRGBHex:0x62656A];
}
+ (UIColor *)ows_light90Color
{
return [UIColor colorWithRGBHex:0x070C14];
}
+ (UIColor *)ows_dark05Color
{
return [UIColor colorWithRGBHex:0xEFEFEF];
}
+ (UIColor *)ows_dark30Color
{
return [UIColor colorWithRGBHex:0xA8A9AA];
}
+ (UIColor *)ows_dark55Color
{
return [UIColor colorWithRGBHex:0x88898C];
}
+ (UIColor *)ows_dark60Color
{
return [UIColor colorWithRGBHex:0x797A7C];
}
+ (UIColor *)ows_dark70Color
{
return [UIColor colorWithRGBHex:0x414347];
}
+ (UIColor *)ows_dark85Color
{
return [UIColor colorWithRGBHex:0x1A1C20];
}
+ (UIColor *)ows_dark95Color
{
return [UIColor colorWithRGBHex:0x0A0C11];
}
+ (UIColor *)ows_blackColor
{
return [UIColor colorWithRGBHex:0x000000];
}
+ (UIColor *)ows_red700Color
{
return [UIColor colorWithRGBHex:0xd32f2f];
}
+ (UIColor *)ows_pink600Color
{
return [UIColor colorWithRGBHex:0xd81b60];
}
+ (UIColor *)ows_purple600Color
{
return [UIColor colorWithRGBHex:0x8e24aa];
}
+ (UIColor *)ows_indigo600Color
{
return [UIColor colorWithRGBHex:0x3949ab];
}
+ (UIColor *)ows_blue700Color
{
return [UIColor colorWithRGBHex:0x1976d2];
}
+ (UIColor *)ows_cyan800Color
{
return [UIColor colorWithRGBHex:0x00838f];
}
+ (UIColor *)ows_teal700Color
{
return [UIColor colorWithRGBHex:0x00796b];
}
+ (UIColor *)ows_green800Color
{
return [UIColor colorWithRGBHex:0x2e7d32];
}
+ (UIColor *)ows_deepOrange900Color
{
return [UIColor colorWithRGBHex:0xbf360c];
}
+ (UIColor *)ows_grey600Color
{
return [UIColor colorWithRGBHex:0x757575];
}
+ (UIColor *)ows_darkSkyBlueColor
{
return [UIColor colorWithRed:32.f / 255.f green:144.f / 255.f blue:234.f / 255.f alpha:1.f];
}
+ (NSDictionary<NSString *, UIColor *> *)ows_conversationColorMap
{
static NSDictionary<NSString *, UIColor *> *colorMap;
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
colorMap = @{
@"red" : self.ows_red700Color,
@"pink": self.ows_pink600Color,
@"purple": self.ows_purple600Color,
@"indigo": self.ows_indigo600Color,
@"blue": self.ows_blue700Color,
@"cyan": self.ows_cyan800Color,
@"teal": self.ows_teal700Color,
@"green": self.ows_green800Color,
@"deep_orange": self.ows_deepOrange900Color,
@"grey": self.ows_grey600Color
};
});
return colorMap;
}
+ (NSArray<NSString *> *)ows_conversationColorNames
{
return self.ows_conversationColorMap.allKeys;
}
+ (NSArray<UIColor *> *)ows_conversationColors
{
return self.ows_conversationColorMap.allValues;
}
+ (nullable UIColor *)ows_conversationColorForColorName:(NSString *)colorName
{
OWSAssert(colorName.length > 0);
return [self.ows_conversationColorMap objectForKey:colorName];
}
+ (nullable NSString *)ows_conversationColorNameForColor:(UIColor *)color
{
return [self.ows_conversationColorMap allKeysForObject:color].firstObject;
}
@end
NS_ASSUME_NONNULL_END