Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 335 Bytes

01.custom color theme.md

File metadata and controls

19 lines (15 loc) · 335 Bytes

01.custom color theme

import Foundation
import SwiftUI

extension Color {
	static let theme = ColorTheme()
}

struct ColorTheme {
	let accent = Color("AccentColor")
	let background = Color("BackgroundColor")
	let green = Color("GreenColor")
	let red = Color("RedColor")
	let secondaryText = Color("SecondaryColor")
}