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", };