You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
574 B
22 lines
574 B
//
|
|
// UIColor+Extensions.swift
|
|
// TournamentStats
|
|
//
|
|
// Created by Laurent Morvillier on 06/08/2019.
|
|
// Copyright © 2019 Stax River. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import UIKit
|
|
|
|
extension UIColor {
|
|
|
|
convenience init(red: CGFloat, green: CGFloat, blue: CGFloat) {
|
|
self.init(red: red/255.0, green: green/255.0, blue: blue/255.0, alpha: 1.0)
|
|
}
|
|
|
|
convenience init(r red: CGFloat, g green: CGFloat, b blue: CGFloat, a alpha: CGFloat) {
|
|
self.init(red: red/255.0, green: green/255.0, blue: blue/255.0, alpha: alpha)
|
|
}
|
|
|
|
}
|
|
|