21 lines
587 B
Swift
21 lines
587 B
Swift
//
|
|
// Colors.swift
|
|
// passKit
|
|
//
|
|
// Created by Danny Moesch on 01.10.19.
|
|
// Copyright © 2019 Bob Sun. All rights reserved.
|
|
//
|
|
|
|
public enum Colors {
|
|
public static let label: UIColor = .black
|
|
|
|
public static let secondaryLabel: UIColor = .init(red: 60.0, green: 60.0, blue: 67.0, alpha: 0.6)
|
|
|
|
public static let systemBackground: UIColor = .white
|
|
|
|
public static let secondarySystemBackground: UIColor = .init(red: 242.0, green: 242.0, blue: 247.0, alpha: 1.0)
|
|
|
|
public static let systemRed = UIColor.systemRed
|
|
|
|
public static let systemBlue = UIColor.systemBlue
|
|
}
|