Version casi lista

This commit is contained in:
alexandrev-tibco
2026-02-17 13:34:02 +01:00
commit e593453abd
99 changed files with 10867 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import SwiftUI
extension Font {
static let mealMoodH1 = Font.system(size: 28, weight: .bold, design: .rounded)
static let mealMoodH2 = Font.system(size: 20, weight: .semibold, design: .rounded)
static let mealMoodH3 = Font.system(size: 18, weight: .semibold, design: .rounded)
static let mealMoodBody = Font.system(size: 16, weight: .regular, design: .default)
static let mealMoodBodyBold = Font.system(size: 16, weight: .semibold, design: .default)
static let mealMoodCaption = Font.system(size: 12, weight: .medium, design: .default)
static let mealMoodSmall = Font.system(size: 14, weight: .regular, design: .default)
}