mirror of
https://github.com/makeplane/plane.git
synced 2025-12-22 06:39:31 +01: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",
|
||
|
|
};
|