From 7801a4b66d2b991ae1b6b91cef81cdb3a1b65937 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Mon, 13 Jul 2026 22:41:21 +0000 Subject: [PATCH] Make Shopping Cart checkout button blue Change the CHECKOUT button background from black to blue (Theme.stickerGreen) and invert text color to inkBlack for contrast, matching the BROWSE BUGS button style. 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..5bc5cf1 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.inkBlack) .frame(maxWidth: .infinity) .padding(.vertical, 16) - .background(Capsule().fill(Theme.inkBlack)) + .background(Capsule().fill(Theme.stickerGreen)) } .buttonStyle(.plain) .accessibilityIdentifier("checkout-button")