mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
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",
|
|
};
|