From 0c00a69d8a7c132aeed6c5cf878835d1115d497b Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Fri, 27 Feb 2026 16:10:40 -0800 Subject: [PATCH] feat: flow colors green=economic, purple=delegation, blue=data MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Align flow kind colors to intuitive scheme: - Economic: green (#4ade80) - Governance → Delegation: purple (#a78bfa) - Data: blue (#60a5fa) Co-Authored-By: Claude Opus 4.6 --- lib/layer-types.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/layer-types.ts b/lib/layer-types.ts index 508b629..be6a203 100644 --- a/lib/layer-types.ts +++ b/lib/layer-types.ts @@ -21,11 +21,11 @@ export type FlowKind = | "custom"; // user-defined export const FLOW_COLORS: Record = { - economic: "#bef264", // lime + economic: "#4ade80", // green trust: "#c4b5fd", // violet - data: "#67e8f9", // cyan + data: "#60a5fa", // blue attention: "#fcd34d", // amber - governance: "#f0abfc", // fuchsia + governance: "#a78bfa", // purple resource: "#6ee7b7", // emerald custom: "#94a3b8", // slate }; @@ -35,7 +35,7 @@ export const FLOW_LABELS: Record = { trust: "Trust", data: "Data", attention: "Attention", - governance: "Governance", + governance: "Delegation", resource: "Resource", custom: "Custom", };