[Bug] Development Share component background blur CSS mismatch
While development share enables developers to view css properties, in some cases an object in Adobe XD will not look the same if a developer chooses to use provided css snippets.
Simple example demonstrating the issue:

Artboard containing a background image with a blurred rectangle on top (expected result)
Adobe XD generates following css snippet:
top: 160px;
left: 160px;
width: 760px;
height: 760px;
background: #000000 0% 0% no-repeat padding-box;
box-shadow: 0px 0px 0px #000000;
opacity: 1;
backdrop-filter: blur(50px);
-webkit-backdrop-filter: blur(50px);
Actual result using above snippet:

However this can be fixed when
background: #000000 0% 0% no-repeat padding-box;is replaced with
background: rgba(18, 18, 18, 0.4);
Finding the corresponding color values does take time unfortunately, it would be great if the team behind Adobe XD could fix this issue for faster, more seamless workflows.