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-03-10 20:34:30 -08:00
|
|
|
public static let label: UIColor = .label
|
2019-10-01 22:36:22 +02:00
|
|
|
|
2023-03-10 20:34:30 -08:00
|
|
|
public static let secondaryLabel: UIColor = .secondaryLabel
|
2019-10-01 22:36:22 +02:00
|
|
|
|
2023-03-10 20:34:30 -08:00
|
|
|
public static let systemBackground: UIColor = .systemBackground
|
2019-10-01 22:36:22 +02:00
|
|
|
|
2023-03-10 20:34:30 -08:00
|
|
|
public static let secondarySystemBackground: UIColor = .secondarySystemBackground
|
2019-10-01 22:36:22 +02:00
|
|
|
|
2023-03-10 20:34:30 -08:00
|
|
|
public static let systemRed: UIColor = .systemRed
|
2019-10-01 22:36:22 +02:00
|
|
|
|
2023-03-10 20:34:30 -08:00
|
|
|
public static let systemBlue: UIColor = .systemBlue
|
2019-10-01 22:36:22 +02:00
|
|
|
}
|