Skip to content

Instantly share code, notes, and snippets.

@danstepanov
Created December 23, 2015 21:49
Show Gist options
  • Save danstepanov/a4a6ca0a97810651709f to your computer and use it in GitHub Desktop.
Save danstepanov/a4a6ca0a97810651709f to your computer and use it in GitHub Desktop.
extension UIColor {
simpleColor(red: Int, green: Int, blue: Int) {
let newRed = CGFloat(red)/255
let newGreen = CGFloat(green)/255
let newBlue = CGFloat(blue)/255
self.init(red: newRed, green: newGreen, blue: newBlue, alpha: 1.0)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment