2019-10-01 22:36:22 +02:00
|
|
|
//
|
|
|
|
|
// Colors.swift
|
|
|
|
|
// passKit
|
|
|
|
|
//
|
|
|
|
|
// Created by Danny Moesch on 01.10.19.
|
|
|
|
|
// Copyright © 2019 Bob Sun. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
2020-07-04 22:05:20 +02:00
|
|
|
public enum Colors {
|
2023-02-04 15:27:37 -08:00
|
|
|
public static let label: UIColor = .black
|
2019-10-01 22:36:22 +02:00
|
|
|
|
2023-02-04 15:27:37 -08:00
|
|
|
public static let secondaryLabel: UIColor = .init(red: 60.0, green: 60.0, blue: 67.0, alpha: 0.6)
|
2019-10-01 22:36:22 +02:00
|
|
|
|
2023-02-04 15:27:37 -08:00
|
|
|
public static let systemBackground: UIColor = .white
|
2019-10-01 22:36:22 +02:00
|
|
|
|
2023-02-04 15:27:37 -08:00
|
|
|
public static let secondarySystemBackground: UIColor = .init(red: 242.0, green: 242.0, blue: 247.0, alpha: 1.0)
|
2019-10-01 22:36:22 +02:00
|
|
|
|
2020-02-28 19:05:23 +01:00
|
|
|
public static let systemRed = UIColor.systemRed
|
2019-10-01 22:36:22 +02:00
|
|
|
|
2020-02-28 19:05:23 +01:00
|
|
|
public static let systemBlue = UIColor.systemBlue
|
2019-10-01 22:36:22 +02:00
|
|
|
}
|