Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions BugBazaar/Screens/ProductDetailView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,10 @@ struct ProductDetailView: View {
} label: {
Text("ADD TO CART")
.font(.bodyFont(14, bold: true))
.foregroundColor(Theme.stickerGreen)
.foregroundColor(Theme.brightGreen)
.frame(maxWidth: .infinity)
.padding(.vertical, 16)
.background(Capsule().fill(Theme.inkBlack))
.background(Capsule().fill(Theme.addToCartOrange))
}
.buttonStyle(.plain)
.accessibilityIdentifier("add-to-cart")
Expand Down
2 changes: 2 additions & 0 deletions BugBazaar/Theme.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ enum Theme {
static let stickerGreen = Color(hex: 0x0000FF)
static let mangoOrange = Color(hex: 0x008000)
static let mangoYellow = Color(hex: 0xFFD500)
static let addToCartOrange = Color(hex: 0xFF8C00)
static let brightGreen = Color(hex: 0x39FF14)
static let inkBlack = Color(hex: 0x080808)
static let paperWhite = Color(hex: 0xFCFCFC)
static let gray = Color(hex: 0x999999)
Expand Down