chore: project active cycle progress state group color updated (#5077)

This commit is contained in:
Anmol Singh Bhatia 2024-07-08 18:52:47 +05:30 committed by GitHub
parent 7767be2e21
commit fd61079c8b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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",
},
];