From 6f4fc2914590b8c74fb1f6c66222b2f3df028a9c Mon Sep 17 00:00:00 2001 From: Pablo Vazquez Date: Wed, 25 May 2022 16:56:01 +0200 Subject: [PATCH] Web: Adjust colors for Canceled and Paused status Use gray to contrast with the other statuses that indicate activity/errors. --- web/app/src/assets/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/app/src/assets/base.css b/web/app/src/assets/base.css index 66179cf4..19a37d50 100644 --- a/web/app/src/assets/base.css +++ b/web/app/src/assets/base.css @@ -47,10 +47,10 @@ --color-status-failed: hsl(356 100% 59%); --color-status-soft-failed: hsl(356 70% 40%); - --color-status-canceled: hsl(194 100% 46%); - --color-status-paused: hsl(194 20% 46%); --color-status-queued: hsl(194 100% 46%); --color-status-requeueing: hsl(194 100% 46%); + --color-status-canceled: hsl(0 0% 46%); + --color-status-paused: hsl(0 0% 66%); --color-status-cancel-requested: hsl(194 30% 50%); --color-status-under-construction: hsl(194 30% 50%);