16 lines
376 B
Swift
16 lines
376 B
Swift
//
|
|
// https://mczachurski.dev
|
|
// Copyright © 2023 Marcin Czachurski and the repository contributors.
|
|
// Licensed under the MIT License.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
extension Color {
|
|
|
|
// MARK: - Text Colors
|
|
static let dangerColor = Color("DangerColor")
|
|
static let lightGrayColor = Color("LightGrayColor")
|
|
static let mainTextColor = Color("MainTextColor")
|
|
}
|