From 3268a70baae4fcec25ac470658e7c2cb9bb37b0e Mon Sep 17 00:00:00 2001 From: Usman Baig Date: Mon, 9 Mar 2026 15:57:33 +0100 Subject: [PATCH] Fix Globe: reduce mapBrightness to fix glitches, brighten base color MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit mapBrightness 6→2 fixes overblown dot artifacts, baseColor 0.3→0.5 makes the sphere visible against the dark card background --- components/dashboard/Globe.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/dashboard/Globe.tsx b/components/dashboard/Globe.tsx index a309fca..e9bf0b7 100644 --- a/components/dashboard/Globe.tsx +++ b/components/dashboard/Globe.tsx @@ -78,12 +78,12 @@ export default function Globe({ data, className }: GlobeProps) { phi: 0, theta: 0.3, dark: isDark ? 1 : 0, - diffuse: isDark ? 1.2 : 0.4, + diffuse: isDark ? 2 : 0.4, mapSamples: 16000, - mapBrightness: isDark ? 6 : 1.2, - baseColor: isDark ? [0.3, 0.3, 0.3] : [1, 1, 1], + mapBrightness: isDark ? 2 : 1.2, + baseColor: isDark ? [0.5, 0.5, 0.5] : [1, 1, 1], markerColor: [253 / 255, 94 / 255, 15 / 255], - glowColor: isDark ? [0.08, 0.08, 0.08] : [1, 1, 1], + glowColor: isDark ? [0.15, 0.15, 0.15] : [1, 1, 1], markers, }