Open the quick-add.css template under assets folder and find the .quick-add-modal somewhere in the lines 12 to 24 and replace it with the code below. If you want lighter overlay decrease the background alpha from .5 to like 0.3 or if you want to make more darker increase it to like .7
.quick-add-modal {
box-sizing: border-box;
opacity: 0;
position: fixed;
visibility: hidden;
z-index: -1;
margin: 0 auto;
top: 0;
left: 0;
width: 100%;
background: rgba(0, 0, 0, .5);
height: 100%;
}