13 lines
518 B
Swift
13 lines
518 B
Swift
import SwiftUI
|
|
import Bedrock
|
|
|
|
public enum BusinessCardSurfaceColors: SurfaceColorProvider {
|
|
public static let primary = Color.AppBackground.base
|
|
public static let secondary = Color.AppBackground.secondary
|
|
public static let tertiary = Color.AppBackground.elevated
|
|
public static let overlay = Color.AppBackground.base
|
|
public static let card = Color.AppBackground.card
|
|
public static let groupedFill = Color.AppBackground.accent
|
|
public static let sectionFill = Color.AppBackground.secondary
|
|
}
|