I am currently attempting to assign a background color to a specific style of pop-up, but whenever I use a value that includes an alpha channel, it ends up being transparent. This is the CSS code I have been using:
--color: 255, 144, 106, 0.18;
background: var(rgb(--color))
If you're interested in seeing how this looks, you can view a screenshot here.
Is there a workaround that will allow me to maintain the color without making the div transparent?
Keep in mind that I am unable to modify the color token. I have attempted adjusting the parent's opacity and setting its background, but so far no success.