I create two colours as follows:
red <- rgb(140, 35, 35, alpha=255, max=255)
blue <- rgb(35, 35, 140, alpha=0.6*255, max=255)
How do I create a new colour which is obtained by overlapping the "transparent" blue over the red?
I saw this answer but (a) I don't know how to apply it to an rgb object and (b) I was hoping there is a built-in way to do it.