From 19def8cdb0a2e5e0db29403ba68859d09e83b6e6 Mon Sep 17 00:00:00 2001 From: Mitchell McCaffrey Date: Tue, 9 Feb 2021 17:56:49 +1100 Subject: [PATCH] Changed fog shadow color to match shape color --- src/components/map/MapFog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/map/MapFog.js b/src/components/map/MapFog.js index 08028a5..0e8fdea 100644 --- a/src/components/map/MapFog.js +++ b/src/components/map/MapFog.js @@ -364,7 +364,7 @@ function MapFog({ // Disable collision if the fog is transparent and we're not editing it // This allows tokens to be moved under the fog hitFunc={editable && !active ? () => {} : undefined} - shadowColor={editable ? "rgba(0, 0, 0, 0)" : "rgba(0, 0, 0, 0.33)"} + shadowColor={editable ? "rgba(0, 0, 0, 0)" : "rgba(34, 34, 34, 0.50)"} shadowOffset={{ x: 0, y: 5 }} shadowBlur={10} />