Use system colors (fix #608)
This commit is contained in:
parent
e6c1dc8dee
commit
d078d3ca0a
1 changed files with 6 additions and 6 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue