I would use a category on UIColor. For example:
// In UIColor+ScarletColor.h
@interface UIColor (ScarletColor)
+ (UIColor*)scarletColor;
@end
// In UIColor+ScarletColor.m
@implementation UIColor (ScarletColor)
+ (UIColor*)scarletColor {
return [UIColor colorWithRed:207.0/255.0 green:47.0/255.0 blue:40.0/255.0 alpha:1];
}
@end
And when you want to use the color you only have to do this:
#import "UIColor+ScarletColor.h"
....
UIColor *scarlet = [UIColor scarletColor];
Hope it helps!!