CoffeeCraft/Sources/CoffeeUI/Color+Extension.swift

20 lines
277 B
Swift

//
// File.swift
//
//
// Created by Yhanco Grey Esteban on 6/5/22.
//
import SwiftUI
public extension Color {
static var background: Color {
return Color("Background")
}
static var foreground: Color {
return Color("Foreground")
}
}