From 1c6789f7a85f8cdba8a17d42aa0523ed24eec530 Mon Sep 17 00:00:00 2001 From: Shekar Siri Date: Thu, 25 Aug 2022 14:59:33 +0200 Subject: [PATCH] fix(ui) - project list item color --- frontend/app/types/site/site.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/types/site/site.js b/frontend/app/types/site/site.js index 38f8666a1..158855bbc 100644 --- a/frontend/app/types/site/site.js +++ b/frontend/app/types/site/site.js @@ -6,7 +6,7 @@ export const YELLOW = 'yellow'; export const GREEN = 'green'; export const STATUS_COLOR_MAP = { - [ RED ]: 'red', + [ RED ]: '#CC0000', [ YELLOW ]: 'orange', [ GREEN ]: 'green', }