21 lines
534 B
Swift
21 lines
534 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 = .label
|
|
|
|
public static let secondaryLabel: UIColor = .secondaryLabel
|
|
|
|
public static let systemBackground: UIColor = .systemBackground
|
|
|
|
public static let secondarySystemBackground: UIColor = .secondarySystemBackground
|
|
|
|
public static let systemRed: UIColor = .systemRed
|
|
|
|
public static let systemBlue: UIColor = .systemBlue
|
|
}
|