import ManaAuthUI /// Brücke zwischen Cardeckys `CardsTheme` (HSL-Forest) und der /// `ManaBrandConfig` des `ManaAuthUI`-Paketes. Wird im RootView /// einmal als Environment-Wert gesetzt. /// /// Wenn ManaTokens (mana-swift-core) später Theme-Variants liefert, /// kann diese Datei durch `ManaBrandConfig.forest(appName: "Cardecky", …)` /// ersetzt werden — siehe MANA_SWIFT.md Phase ε. enum CardsBrand { static let manaBrand = ManaBrandConfig( appName: "Cardecky", tagline: "Karteikarten des Vereins mana e.V.", logoSymbol: "rectangle.stack.fill", background: CardsTheme.background, foreground: CardsTheme.foreground, surface: CardsTheme.surface, mutedForeground: CardsTheme.mutedForeground, border: CardsTheme.border, primary: CardsTheme.primary, primaryForeground: CardsTheme.primaryForeground, error: CardsTheme.error, success: CardsTheme.success ) }