From 927b1a41285d33089f1d33bed1852aa2af4378f6 Mon Sep 17 00:00:00 2001 From: Eric Gullickson <16152721+ericgullickson@users.noreply.github.com> Date: Fri, 2 Jan 2026 22:07:43 -0600 Subject: [PATCH] fix: use primary color for all summary card icons (refs #2) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All summary cards now use primary.main for consistent branding 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .gitea/workflows/staging.yaml | 2 +- frontend/src/features/dashboard/components/SummaryCards.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/staging.yaml b/.gitea/workflows/staging.yaml index 0630bfb..fec55b3 100644 --- a/.gitea/workflows/staging.yaml +++ b/.gitea/workflows/staging.yaml @@ -3,7 +3,7 @@ # After verification, sends notification with link to trigger production deploy name: Deploy to Staging -run-name: Staging Deploy - ${{ gitea.sha }} +run-name: "Staging - ${{ gitea.event.pull_request.title || gitea.ref_name }}" on: push: diff --git a/frontend/src/features/dashboard/components/SummaryCards.tsx b/frontend/src/features/dashboard/components/SummaryCards.tsx index 47bcc76..eaf6ec8 100644 --- a/frontend/src/features/dashboard/components/SummaryCards.tsx +++ b/frontend/src/features/dashboard/components/SummaryCards.tsx @@ -27,14 +27,14 @@ export const SummaryCards: React.FC = ({ summary }) => { value: summary.upcomingMaintenanceCount, subtitle: 'Next 30 days', icon: BuildRoundedIcon, - color: 'warning.main', + color: 'primary.main', }, { title: 'Recent Fuel Logs', value: summary.recentFuelLogsCount, subtitle: 'Last 7 days', icon: LocalGasStationRoundedIcon, - color: 'success.main', + color: 'primary.main', }, ];