Thank you for the reply.
I would actually like to add the opacity or alpha to the color itself. If I add an opacity to the class it will make everything in that container and all its children opaque.
The best way to explain is with scss, you can define a color like so:
$color: #ff0000;
#ID{
background-color: rgba($color, .5);
}
This keeps the defined color , but then adds alpha to it. If I later change $color, it will be updated in #ID as well.
I also noticed in cornerstone if I select a global color and use the alpha slider, it will keep the global color’s name and have the opacity value next to it. Then if I later change the global color, it will be changed with the alpha as well.
This leads me to believe that it may be possible in css as well, but am not sure.
Let me know if this is possible, or is something that maybe can be added in the future.
Thanks!