diff --git a/frontend/src/components/EventList.css b/frontend/src/components/EventList.css index e09646b..f4ee88f 100644 --- a/frontend/src/components/EventList.css +++ b/frontend/src/components/EventList.css @@ -159,6 +159,16 @@ color: var(--color-text); } +/* per-stat accent colors — !important guards against global .stat-value overrides */ +.stat .stat-value--total { color: var(--color-primary) !important; } +.stat .stat-value--confirmed { color: var(--color-success) !important; } +.stat .stat-value--rate { color: var(--color-warning) !important; } + +/* per-stat tinted backgrounds */ +.stat--total { background: rgba(82, 148, 255, 0.12); border-color: rgba(82, 148, 255, 0.30); } +.stat--confirmed { background: rgba(46, 199, 107, 0.12); border-color: rgba(46, 199, 107, 0.30); } +.stat--rate { background: rgba(245, 166, 35, 0.12); border-color: rgba(245, 166, 35, 0.30); } + .event-card-actions { display: flex; gap: 0.5rem; diff --git a/frontend/src/components/EventList.jsx b/frontend/src/components/EventList.jsx index 0d78f0f..68f8669 100644 --- a/frontend/src/components/EventList.jsx +++ b/frontend/src/components/EventList.jsx @@ -139,18 +139,18 @@ function EventList({ onEventSelect, onCreateEvent, onManageTemplates }) {
📅 {formatDate(event.date)}