From 8056929b12f3555dc1f16131b44e11b004d70fc6 Mon Sep 17 00:00:00 2001 From: bach Date: Wed, 22 Feb 2023 19:24:07 +0100 Subject: [PATCH] better bg trame --- src/components/MapBackground.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/MapBackground.vue b/src/components/MapBackground.vue index 2f2daeb..84fd37f 100644 --- a/src/components/MapBackground.vue +++ b/src/components/MapBackground.vue @@ -112,7 +112,7 @@ export default { if (Math.random() > 0.95) { ctx.beginPath(); ctx.arc(i, j, 0.5, 0, 2 * Math.PI, false); - ctx.fillStyle = "rgba(125,125,125,0.8)"; + ctx.fillStyle = "rgba(200,200,200,0.7)"; ctx.fill(); } }