Changed fog shadow color to match shape color

This commit is contained in:
Mitchell McCaffrey 2021-02-09 17:56:49 +11:00
parent 2d5589a02e
commit 19def8cdb0

View File

@ -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}
/>