- App icon now uses white bg + PAYFRIT text + bluetooth beacon icon (matches Android) - AccentColor set to Payfrit Green (#22B24B) - Added BrandColors.swift with full Android color palette parity - All views updated: payfritGreen replaces .blue, proper status colors throughout - Signal strength, beacon type badges, QR scanner corners all use brand colors - DevBanner uses warningOrange matching Android's #FF9800 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
14 lines
386 B
Swift
14 lines
386 B
Swift
import SwiftUI
|
|
|
|
/// Orange DEV banner overlay (matches Android's DevBanner)
|
|
struct DevBanner: View {
|
|
var body: some View {
|
|
Text("DEV")
|
|
.font(.caption2.bold())
|
|
.foregroundStyle(.white)
|
|
.padding(.horizontal, 12)
|
|
.padding(.vertical, 4)
|
|
.background(.warningOrange, in: Capsule())
|
|
.padding(.top, 4)
|
|
}
|
|
}
|