Remove gray colours
This commit is contained in:
@@ -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}
|
||||
|
||||
@@ -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 ? (
|
||||
|
||||
Reference in New Issue
Block a user