diff --git a/BeeKit/UI/UIColorExtension.swift b/BeeKit/UI/UIColorExtension.swift index 4f70ce866..ecf7d1904 100644 --- a/BeeKit/UI/UIColorExtension.swift +++ b/BeeKit/UI/UIColorExtension.swift @@ -12,20 +12,20 @@ import UIKit extension UIColor { public struct Beeminder { - public static let green: UIColor = .init(red: 81.0/255.0, - green: 163.0/255.0, - blue: 81.0/255.0, - alpha: 1) - + public static let green = UIColor(red: 81.0/255.0, + green: 163.0/255.0, + blue: 81.0/255.0, + alpha: 1) + public static let blue: UIColor = .systemBlue public static let orange: UIColor = .systemOrange public static let red: UIColor = .systemRed - - public static let gray: UIColor = .init(white: 0.7, alpha: 1.0) - public static let yellow = UIColor.init(red: 255.0/255.0, - green: 217.0/255.0, - blue: 17.0/255.0, - alpha: 1) + public static let gray = UIColor(white: 0.7, alpha: 1.0) + + public static let yellow = UIColor(red: 255.0/255.0, + green: 217.0/255.0, + blue: 17.0/255.0, + alpha: 1) } }