mirror of
https://github.com/VernissageApp/Vernissage.git
synced 2024-12-29 02:10:44 +01:00
18 lines
441 B
Swift
18 lines
441 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")
|
|
static let selectedRowColor = Color("SelectedRowColor")
|
|
|
|
}
|