Skip to content

Instantly share code, notes, and snippets.

@freesia
Last active August 29, 2015 14:18
Show Gist options
  • Save freesia/75f3f858cdd87af17bf1 to your computer and use it in GitHub Desktop.
Save freesia/75f3f858cdd87af17bf1 to your computer and use it in GitHub Desktop.
UIColor extension
import UIKit
extension UIColor
{
class func colorFromRGB( #r: Int, g: Int, b: Int ) -> UIColor
{
return UIColor( red: CGFloat(r) / 255.0, green: CGFloat(g) / 255.0, blue: CGFloat(b) / 255.0, alpha: CGFloat(1.0) )
}
class func brandColor() -> UIColor
{
return colorFromRGB( r: 115, g: 133, b: 134 )
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment