From eb9a8e3a9714803359c83e0ea48d274a38fac3ca Mon Sep 17 00:00:00 2001 From: palash-signoz Date: Wed, 25 May 2022 10:48:53 +0530 Subject: [PATCH] feat: color is updated (#1198) --- frontend/src/modules/Servicemap/ServiceMap.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/modules/Servicemap/ServiceMap.tsx b/frontend/src/modules/Servicemap/ServiceMap.tsx index 45849c53d6..ffbe2929ea 100644 --- a/frontend/src/modules/Servicemap/ServiceMap.tsx +++ b/frontend/src/modules/Servicemap/ServiceMap.tsx @@ -118,7 +118,7 @@ function ServiceMap(props: ServiceMapProps): JSX.Element { ctx.fillStyle = node.color; ctx.beginPath(); ctx.arc(node.x, node.y, width, 0, 2 * Math.PI, false); - ctx.fillStyle = isDarkMode ? '#3d0b00' : '#ffbcad'; + ctx.fillStyle = isDarkMode ? '#3C8618' : '#D5F2BB'; ctx.fill(); ctx.textAlign = 'center'; ctx.textBaseline = 'middle';