if no custom text color use defaults

This commit is contained in:
Trey t
2022-03-23 15:14:07 -05:00
parent e85e6be7c0
commit 90574ea6ad
17 changed files with 23 additions and 17 deletions

View File

@@ -7,6 +7,12 @@
import SwiftUI
struct DefaultTextColor {
static var textColor: Color {
Color(UIColor.label)
}
}
protocol MoodTintable {
static func color(forMood mood: Mood) -> Color
static func secondary(forMood mood: Mood) -> Color