11 lines
510 B
Swift
11 lines
510 B
Swift
import SwiftUI
|
|
import Bedrock
|
|
|
|
public enum BusinessCardButtonColors: ButtonColorProvider {
|
|
public static let primaryLight = Color(red: 0.98, green: 0.45, blue: 0.40)
|
|
public static let primaryDark = Color(red: 0.85, green: 0.28, blue: 0.24)
|
|
public static let secondary = Color(red: 0.14, green: 0.14, blue: 0.17).opacity(Design.Opacity.subtle)
|
|
public static let destructive = Color.red.opacity(Design.Opacity.heavy)
|
|
public static let cancelText = Color(red: 0.32, green: 0.34, blue: 0.40)
|
|
}
|