12 lines
524 B
Swift
12 lines
524 B
Swift
import Foundation
|
|
import SwiftUI
|
|
|
|
/// Define some custom extensions on the Color class, so we can use the shorthand syntax `..myColor`
|
|
extension Color {
|
|
public static let accent = Color(red: 0.89, green: 0.58, blue: 0.36)
|
|
public static let offWhite = Color(red: 0.97, green: 0.92, blue: 0.9)
|
|
public static let mediumGrey = Color(red: 0.62, green: 0.6, blue: 0.58)
|
|
public static let darkGrey = Color(red: 0.15, green: 0.15, blue: 0.15)
|
|
public static let body = Color(red: 0.32, green: 0.31, blue: 0.3);
|
|
}
|