Created
October 9, 2016 17:54
-
-
Save Rich86man/92d15c294a3e4d508478dc3ec46fa1ff to your computer and use it in GitHub Desktop.
Colors
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@interface UIColor (Orchestra) | |
+ (UIColor *)fitnessBlue; | |
+ (UIColor *)vitalsRed; | |
+ (UIColor *)bodyMeasurementsGray; | |
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@implementation UIColor (Orchestra) | |
+ (UIColor *)fitnessBlue | |
{ | |
return [UIColor colorWithRed:0.0 green:0.6314 blue:0.7961 alpha:1.0]; | |
} | |
+ (UIColor *)vitalsRed | |
{ | |
return [UIColor colorWithRed:0.8618 green:0.1617 blue:0.1216 alpha:1.0]; | |
} | |
+ (UIColor *)bodyMeasurementsGray | |
{ | |
return [UIColor colorWithRed:0.3073 green:0.3073 blue:0.3073 alpha:1.0]; | |
} | |
@end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment