From f7efe2b7b8cc9fd6b84af40a89aeb4a180ee3464 Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Mon, 3 Feb 2025 15:57:20 +0100 Subject: [PATCH] Adjust Globe visualization parameters for improved appearance Increased mapBrightness and modified baseColor and glowColor to achieve better contrast and a more visually appealing design. These changes refine the overall look of the globe component on the home page. --- app/components/home/Globe.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/components/home/Globe.vue b/app/components/home/Globe.vue index 663357a..62bac6b 100644 --- a/app/components/home/Globe.vue +++ b/app/components/home/Globe.vue @@ -31,11 +31,11 @@ const DEFAULT_CONFIG: COBEOptions = { dark: 0, diffuse: 0.4, mapSamples: 20000, - mapBrightness: 1, - baseColor: [0.8, 0.8, 0.8], + mapBrightness: 1.7, + baseColor: [0.5, 0.5, 0.5], opacity: 0.7, markerColor: [160 / 255, 160 / 255, 160 / 255], - glowColor: [1, 1, 1], + glowColor: [0.4, 0.4, 0.4], markers: [], }