import SwiftUI /// Typographie-Skala. Nutzt SwiftUI-Standard-`Font`-Styles, die /// automatisch Dynamic Type respektieren (Accessibility). /// /// Apps mit speziellen Display-Anforderungen können die Werte /// überschreiben — der Default folgt Apple's Human Interface Guidelines /// für gemischte Lese-/Aktions-Apps. public enum ManaTypography { /// Großüberschrift — Screen-Titel. public static let largeTitle: Font = .largeTitle /// Sektion-Titel. public static let title: Font = .title /// Sub-Sektion. public static let title2: Font = .title2 /// Card-Titel. public static let title3: Font = .title3 /// Standard-Überschrift im Body. public static let headline: Font = .headline /// Body-Text. public static let body: Font = .body /// Body, hervorgehoben. public static let bodyEmphasized: Font = .body.weight(.semibold) /// Sekundär-Text, Caption. public static let caption: Font = .caption /// Kleinste Schrift — Meta, Footnote. public static let footnote: Font = .footnote }