fix: make trial, campaign, and no-subscription node colors distinct

- campaignUser: #4dd9c0 (teal) → #fbbf24 (amber) — no longer blends with trial blue
- regular: #6b7280 (gray) → #94a3b8 (slate) — visible on dark background
- Campaign edges updated to amber tint
- defaultNodeColor now references NODE_COLORS.regular instead of hardcoded value
- Legend gradient uses actual campaign palette colors
This commit is contained in:
Fringg
2026-03-22 10:02:17 +03:00
parent cc64f7b8ea
commit 2a57442e04
3 changed files with 12 additions and 12 deletions

View File

@@ -18,8 +18,8 @@ export const NODE_COLORS = {
trialActive: '#38bdf8',
paidExpired: '#ef4444',
trialExpired: '#fb923c',
campaignUser: '#4dd9c0',
regular: '#6b7280',
campaignUser: '#fbbf24',
regular: '#94a3b8',
} as const;
/**