From fd61079c8bbf56c3099046d202fc605dd0216327 Mon Sep 17 00:00:00 2001 From: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com> Date: Mon, 8 Jul 2024 18:52:47 +0530 Subject: [PATCH] chore: project active cycle progress state group color updated (#5077) --- web/core/constants/cycle.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/core/constants/cycle.ts b/web/core/constants/cycle.ts index 15e2bf679..5c6b48327 100644 --- a/web/core/constants/cycle.ts +++ b/web/core/constants/cycle.ts @@ -95,22 +95,22 @@ export const CYCLE_STATE_GROUPS_DETAILS = [ { key: "completed_issues", title: "Completed", - color: "#6490FE", + color: "#16A34A", }, { key: "started_issues", title: "Started", - color: "#FDD97F", + color: "#F59E0B", }, { key: "unstarted_issues", title: "Unstarted", - color: "#FEB055", + color: "#3A3A3A", }, { key: "backlog_issues", title: "Backlog", - color: "#F0F0F3", + color: "#A3A3A3", }, ];