From 0cc1cd5871a4b82ff2e9f1b8dc793d8563016362 Mon Sep 17 00:00:00 2001 From: Fringg Date: Sun, 22 Mar 2026 10:18:34 +0300 Subject: [PATCH] fix: use light label color for graph nodes on dark background --- src/pages/ReferralNetwork/components/NetworkGraph.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/ReferralNetwork/components/NetworkGraph.tsx b/src/pages/ReferralNetwork/components/NetworkGraph.tsx index 1648d67..56efc40 100644 --- a/src/pages/ReferralNetwork/components/NetworkGraph.tsx +++ b/src/pages/ReferralNetwork/components/NetworkGraph.tsx @@ -342,7 +342,7 @@ export function NetworkGraph({ data, className }: NetworkGraphProps) { defaultNodeColor: NODE_COLORS.regular, nodeProgramClasses: { bordered: BorderedNodeProgram }, defaultNodeType: 'bordered', - labelColor: { color: '#111827' }, + labelColor: { color: '#e5e7eb' }, labelFont: 'Inter, system-ui, sans-serif', labelSize: 11, stagePadding: 40,