forked from github/plane
10f145f85c
* feat: user profile overview * chore: profile sidebar designed * feat: user issues filters and view options * refactor: filters * refactor: mutation logic * fix: percentage calculation logic and sidebar shadow
10 lines
185 B
TypeScript
10 lines
185 B
TypeScript
export const STATE_GROUP_COLORS: {
|
|
[key: string]: string;
|
|
} = {
|
|
backlog: "#d9d9d9",
|
|
unstarted: "#3f76ff",
|
|
started: "#f59e0b",
|
|
completed: "#16a34a",
|
|
cancelled: "#dc2626",
|
|
};
|