From 54fabe1197ead3fc03b927e772efad2044c3f091 Mon Sep 17 00:00:00 2001 From: Lauren ten Hoor <32955832+laurentenhoor@users.noreply.github.com> Date: Fri, 13 Feb 2026 16:22:04 +0800 Subject: [PATCH] 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. --- lib/providers/provider.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/providers/provider.ts b/lib/providers/provider.ts index 57117da..2629b37 100644 --- a/lib/providers/provider.ts +++ b/lib/providers/provider.ts @@ -11,7 +11,7 @@ export const STATE_LABELS = [ export type StateLabel = (typeof STATE_LABELS)[number]; export const LABEL_COLORS: Record = { - 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", };