import SwiftUI @main struct HermesApp: App { var body: some Scene { WindowGroup { RootView() .preferredColorScheme(.dark) .tint(HermesTheme.accent) } } }