14 lines
654 B
Swift
14 lines
654 B
Swift
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)
|
|
}
|