Created
November 1, 2019 14:51
-
-
Save Le0nX/adaa7d7f31d90cae32ebe840930d1961 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
import UIKit | |
//MARK: - RGB | |
/** | |
- Descriptioin: | |
RGB color settings | |
*/ | |
extension UIColor { | |
static func RGB (_ red: CGFloat, _ green: CGFloat, _ blue: CGFloat) -> UIColor { | |
return UIColor(red: red/255, green: green/255, blue: blue/255, alpha: 1) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment