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: "#ced4da",
|
||
|
unstarted: "#26b5ce",
|
||
|
started: "#f7ae59",
|
||
|
cancelled: "#d687ff",
|
||
|
completed: "#09a953",
|
||
|
};
|