forked from github/plane
96ad751e11
* style: workspace dashboard * feat: activity graph
10 lines
185 B
TypeScript
10 lines
185 B
TypeScript
export const STATE_GROUP_COLORS: {
|
|
[key: string]: string;
|
|
} = {
|
|
backlog: "#ced4da",
|
|
unstarted: "#26b5ce",
|
|
started: "#f7ae59",
|
|
cancelled: "#d687ff",
|
|
completed: "#09a953",
|
|
};
|