From dd84ffdfe6637588fafb88cc4cd7909667689eda Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Mon, 12 Jan 2026 17:29:40 -0600 Subject: [PATCH] Signed-off-by: Matt Bruce --- SelfieCam/App/SelfieCamApp.swift | 2 +- SelfieCam/Features/Camera/Views/ContentView.swift | 2 +- SelfieCam/Shared/Theme/BrandingConfig.swift | 14 +++++++------- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/SelfieCam/App/SelfieCamApp.swift b/SelfieCam/App/SelfieCamApp.swift index 9dca271..ed4098c 100644 --- a/SelfieCam/App/SelfieCamApp.swift +++ b/SelfieCam/App/SelfieCamApp.swift @@ -17,7 +17,7 @@ struct SelfieCamApp: App { var body: some Scene { WindowGroup { ZStack { - Color.Branding.primary + Color.BrandColors.primary .ignoresSafeArea() AppLaunchView(config: .selfieCam) { diff --git a/SelfieCam/Features/Camera/Views/ContentView.swift b/SelfieCam/Features/Camera/Views/ContentView.swift index 42ea2c6..f19985c 100644 --- a/SelfieCam/Features/Camera/Views/ContentView.swift +++ b/SelfieCam/Features/Camera/Views/ContentView.swift @@ -61,7 +61,7 @@ struct ContentView: View { } } .frame(maxWidth: .infinity, maxHeight: .infinity) - .background(Color.Branding.primary.ignoresSafeArea()) + .background(Color.BrandColors.primary.ignoresSafeArea()) // Settings button overlay - only show when NOT in photo review mode .overlay(alignment: .topTrailing) { if !showPhotoReview { diff --git a/SelfieCam/Shared/Theme/BrandingConfig.swift b/SelfieCam/Shared/Theme/BrandingConfig.swift index 99659d2..e1ad6d8 100644 --- a/SelfieCam/Shared/Theme/BrandingConfig.swift +++ b/SelfieCam/Shared/Theme/BrandingConfig.swift @@ -12,7 +12,7 @@ import Bedrock extension Color { /// SelfieCam branding colors for icon and launch screen. - enum Branding { + enum BrandColors { /// Primary gradient color - rich magenta/rose for a vibrant, modern selfie aesthetic. static let primary = Color("Branding/primary") @@ -33,9 +33,9 @@ extension AppIconConfig { title: "SELFIE", subtitle: "CAM", iconSymbol: "camera.fill", - primaryColor: Color.Branding.primary, - secondaryColor: Color.Branding.secondary, - accentColor: Color.Branding.accent + primaryColor: Color.BrandColors.primary, + secondaryColor: Color.BrandColors.secondary, + accentColor: Color.BrandColors.accent ) } @@ -52,9 +52,9 @@ extension LaunchScreenConfig { decorativeSymbol: "circle.fill", patternStyle: .radial, layoutStyle: .iconAboveTitle, - primaryColor: Color.Branding.primary, - secondaryColor: Color.Branding.secondary, - accentColor: Color.Branding.accent, + primaryColor: Color.BrandColors.primary, + secondaryColor: Color.BrandColors.secondary, + accentColor: Color.BrandColors.accent, titleColor: .white, iconSize: 52, titleSize: 38,