Remove gray colours

This commit is contained in:
Dries Augustyns
2025-12-04 09:45:03 +01:00
parent 40e35735dc
commit 3b73273629
5 changed files with 245 additions and 243 deletions
+3 -3
View File
@@ -395,7 +395,7 @@ export default function WorkflowEditorPage() {
<h1 className="text-3xl font-bold text-neutral-900">{workflow.name}</h1>
<span
className={`inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium ${
workflow.enabled ? 'bg-green-100 text-green-800' : 'bg-gray-100 text-gray-800'
workflow.enabled ? 'bg-green-100 text-green-800' : 'bg-neutral-100 text-neutral-800'
}`}
>
{workflow.enabled ? (
@@ -618,8 +618,8 @@ export default function WorkflowEditorPage() {
: execution.status === 'FAILED'
? 'bg-red-100 text-red-800'
: execution.status === 'CANCELLED'
? 'bg-gray-100 text-gray-800'
: 'bg-gray-100 text-gray-800'
? 'bg-neutral-100 text-neutral-800'
: 'bg-neutral-100 text-neutral-800'
}`}
>
{execution.status}
+1 -1
View File
@@ -189,7 +189,7 @@ export default function WorkflowsPage() {
<CardTitle>{workflow.name}</CardTitle>
<span
className={`inline-flex items-center px-2.5 py-0.5 rounded-full text-xs font-medium ${
workflow.enabled ? 'bg-green-100 text-green-800' : 'bg-gray-100 text-gray-800'
workflow.enabled ? 'bg-green-100 text-green-800' : 'bg-neutral-100 text-neutral-800'
}`}
>
{workflow.enabled ? (