🎨 style(association-status): update text color for default association status in Pleb table component

This commit is contained in:
fsociety
2024-10-07 14:18:10 +02:00
parent e89265d447
commit ef109b87a3

View File

@@ -97,7 +97,7 @@ final class EinundzwanzigPlebTable extends PowerGridComponent
'association_status_formatted',
function (EinundzwanzigPleb $model) {
$class = match ($model->association_status) {
AssociationStatus::DEFAULT => 'text-xs inline-flex font-medium rounded-full text-center px-2.5 py-1 bg-gray-500/20 text-gray-700',
AssociationStatus::DEFAULT => 'text-xs inline-flex font-medium rounded-full text-center px-2.5 py-1 bg-gray-500/20 text-gray-200',
AssociationStatus::PASSIVE => 'text-xs inline-flex font-medium rounded-full text-center px-2.5 py-1 bg-yellow-500/20 text-yellow-700',
AssociationStatus::ACTIVE => 'text-xs inline-flex font-medium rounded-full text-center px-2.5 py-1 bg-green-500/20 text-green-700',
AssociationStatus::HONORARY => 'text-xs inline-flex font-medium rounded-full text-center px-2.5 py-1 bg-blue-500/20 text-blue-700',