Skip to content

Instantly share code, notes, and snippets.

@mane87
Created May 27, 2015 10:57
Show Gist options
  • Save mane87/e1aad8bcc094c0bce437 to your computer and use it in GitHub Desktop.
Save mane87/e1aad8bcc094c0bce437 to your computer and use it in GitHub Desktop.
//
// UIColor+customColors.m
// Unity-iPhone
//
// Created by Manuel Zoderer on 27/05/15.
//
//
#import "UIColor+customColors.h"
@implementation UIColor (customColors)
+ (UIColor *) cflPetrolColor {
UIColor *cflPetrolColor = [UIColor colorWithRed:24.0f/255.0f
green:72.0f/255.0f
blue:82.0f/255.0f
alpha:1.0f];
return cflPetrolColor;
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment