Skip to content

Instantly share code, notes, and snippets.

@Rich86man
Created October 9, 2016 17:54
Show Gist options
  • Save Rich86man/92d15c294a3e4d508478dc3ec46fa1ff to your computer and use it in GitHub Desktop.
Save Rich86man/92d15c294a3e4d508478dc3ec46fa1ff to your computer and use it in GitHub Desktop.
Colors
@interface UIColor (Orchestra)
+ (UIColor *)fitnessBlue;
+ (UIColor *)vitalsRed;
+ (UIColor *)bodyMeasurementsGray;
@end
@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