forked from github/plane
5b228bd1eb
* chore: update state icons and colors * chore: update icons
12 lines
232 B
TypeScript
12 lines
232 B
TypeScript
import { TStateGroups } from "types";
|
|
|
|
export const STATE_GROUP_COLORS: {
|
|
[key in TStateGroups]: string;
|
|
} = {
|
|
backlog: "#d9d9d9",
|
|
unstarted: "#3f76ff",
|
|
started: "#f59e0b",
|
|
completed: "#16a34a",
|
|
cancelled: "#dc2626",
|
|
};
|