Skip to content

Instantly share code, notes, and snippets.

View eTryp's full-sized avatar

damien eTryp

  • Movidone
  • Strasbourg
View GitHub Profile
import UIKit
extension UIColor {
// Create a UIColor from RGB
convenience init(red: Int, green: Int, blue: Int, a: CGFloat = 1.0) {
self.init(
red: CGFloat(red) / 255.0,
green: CGFloat(green) / 255.0,
blue: CGFloat(blue) / 255.0,