From bee0f37b575d596c9a680bf2db93f4b066f0c418 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Tue, 14 Jul 2026 20:21:59 +0000 Subject: [PATCH] Make Shopping Cart checkout button blue Change the checkout button background from black to blue (Theme.stickerGreen) with white text for contrast. Co-authored-by: Anam Hira --- BugBazaar/Screens/CartView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BugBazaar/Screens/CartView.swift b/BugBazaar/Screens/CartView.swift index 934ee1f..7f76cc9 100644 --- a/BugBazaar/Screens/CartView.swift +++ b/BugBazaar/Screens/CartView.swift @@ -84,10 +84,10 @@ struct CartView: View { } label: { Text("CHECKOUT ยท \(grandTotal.usd)") .font(.bodyFont(14, bold: true)) - .foregroundColor(Theme.stickerGreen) + .foregroundColor(Theme.paperWhite) .frame(maxWidth: .infinity) .padding(.vertical, 16) - .background(Capsule().fill(Theme.inkBlack)) + .background(Capsule().fill(Theme.stickerGreen)) } .buttonStyle(.plain) .accessibilityIdentifier("checkout-button")