From 2e23dcb9aee29367960e749da36aa895107eef96 Mon Sep 17 00:00:00 2001 From: FuelBoard Contributor Date: Tue, 18 Aug 2026 12:56:49 +0100 Subject: [PATCH] ui: keep station brand badges white --- FuelBoard/ContentView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FuelBoard/ContentView.swift b/FuelBoard/ContentView.swift index 79ca8dc..bd6a956 100644 --- a/FuelBoard/ContentView.swift +++ b/FuelBoard/ContentView.swift @@ -790,11 +790,11 @@ struct StationRow: View { } else { Image(systemName: "fuelpump.fill") .font(.system(size: 22, weight: .semibold)) - .foregroundStyle(.primary) + .foregroundStyle(Color.black.opacity(0.82)) } } .frame(width: 46, height: 46) - .background(Circle().fill(Color(.secondarySystemBackground))) + .background(Circle().fill(Color.white)) .clipShape(Circle()) .overlay(Circle().stroke(Color.primary.opacity(0.10), lineWidth: 1)) .shadow(color: .black.opacity(0.08), radius: 2, y: 1)