Signalfarben kräftiger: green-50/red-50 → green-100/red-100

Betrifft Kalender-Tageskacheln, Event-Liste (App) und
Admin-Event-Übersicht. Borders ebenfalls angepasst (green-300/red-300).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Rhino
2026-03-03 09:54:57 +01:00
parent b9d158515f
commit 83271a1e92
3 changed files with 4 additions and 4 deletions

View File

@@ -306,8 +306,8 @@
dayCellClass(day) {
if (!day.currentMonth) return 'bg-gray-50 text-gray-400';
const status = this.dayMinStatus(this.eventsForDate(day.dateStr));
if (status === true) return 'bg-green-50';
if (status === false) return 'bg-red-50';
if (status === true) return 'bg-green-100';
if (status === false) return 'bg-red-100';
if (day.isToday) return 'bg-blue-50';
return '';
},