Use the background-color property on the .dimmer element with a color value of type rgba type css to introduce transparency.
.dimmer { background-color: rgba(250,250,50,0.8) }
To apply this CSS using jQuery, use the jQuery#css method, for example:
$(".dimmer").css("background-color","rgba(250,250,50,0.8)");
source share