Skip to content

Instantly share code, notes, and snippets.

@jazzedge
Created December 24, 2017 17:02
Show Gist options
  • Save jazzedge/2902748dc0a591cc9634ee357be5a0ff to your computer and use it in GitHub Desktop.
Save jazzedge/2902748dc0a591cc9634ee357be5a0ff to your computer and use it in GitHub Desktop.
import UIKit
extension UIColor {
static func rgbColor(r: CGFloat, g: CGFloat, b: CGFloat, a: CGFloat = 1.0) -> UIColor {
return UIColor(red: r/255.0, green: g/255.0, blue: b/255.0, alpha: a)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment