| 1234567891011121314151617181920212223 |
- //
- // UIColor.swift
- // LoopKitUI
- //
- // Copyright © 2018 LoopKit Authors. All rights reserved.
- //
- import UIKit
- extension UIColor {
- static let delete = UIColor.higRed()
- }
- // MARK: - HIG colors
- // See: https://developer.apple.com/ios/human-interface-guidelines/visual-design/color/
- extension UIColor {
- private static func higRed() -> UIColor {
- return UIColor(red: 1, green: 59 / 255, blue: 48 / 255, alpha: 1)
- }
- }
|