fix: change Planning label colour from blue to grey (#144) (#146)

Change Planning label from #6699cc (blue) to #95a5a6 (grey/slate) to distinguish it from To Do (#428bca).

Note: Only affects newly created labels. Existing repos need manual update.
This commit is contained in:
Lauren ten Hoor
2026-02-13 16:22:04 +08:00
committed by GitHub
parent 825c5e6f50
commit 54fabe1197

View File

@@ -11,7 +11,7 @@ export const STATE_LABELS = [
export type StateLabel = (typeof STATE_LABELS)[number]; export type StateLabel = (typeof STATE_LABELS)[number];
export const LABEL_COLORS: Record<StateLabel, string> = { export const LABEL_COLORS: Record<StateLabel, string> = {
Planning: "#6699cc", "To Do": "#428bca", Doing: "#f0ad4e", "To Test": "#5bc0de", Planning: "#95a5a6", "To Do": "#428bca", Doing: "#f0ad4e", "To Test": "#5bc0de",
Testing: "#9b59b6", Done: "#5cb85c", "To Improve": "#d9534f", Refining: "#f39c12", Testing: "#9b59b6", Done: "#5cb85c", "To Improve": "#d9534f", Refining: "#f39c12",
}; };