Is it possible to keep a background image 100% opacity and make the background-colour 50% opacity?
.smallIcons{ background-color: #f00; opacity: 0.5; //
Check this Css. Easiest way to do that
.class { background:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ),url(image.jpg) no-repeat center top; }