diff --git a/passKit/Helpers/Colors.swift b/passKit/Helpers/Colors.swift index 51aabc0..2442af1 100644 --- a/passKit/Helpers/Colors.swift +++ b/passKit/Helpers/Colors.swift @@ -7,15 +7,15 @@ // public enum Colors { - public static let label: UIColor = .black + public static let label: UIColor = .label - public static let secondaryLabel: UIColor = .init(red: 60.0, green: 60.0, blue: 67.0, alpha: 0.6) + public static let secondaryLabel: UIColor = .secondaryLabel - public static let systemBackground: UIColor = .white + public static let systemBackground: UIColor = .systemBackground - public static let secondarySystemBackground: UIColor = .init(red: 242.0, green: 242.0, blue: 247.0, alpha: 1.0) + public static let secondarySystemBackground: UIColor = .secondarySystemBackground - public static let systemRed = UIColor.systemRed + public static let systemRed: UIColor = .systemRed - public static let systemBlue = UIColor.systemBlue + public static let systemBlue: UIColor = .systemBlue }