I'm working with a background-color which should be 70% transparent, but I have many limitations:
I'm sure the only option I have is changing my PHP code to generate RGBa colors instead, but asking, do you see any other solution?
You can assign a pseudo element to the containing div. Like so:
.container:before{
opacity:0.5;
}
You could also convert your hex value to RGB and then use that: RGB to Hex and Hex to RGB