RGB:
yellow + cyan -> gray
yellow + magenta -> red
magenta + cyan -> blue
Assuming Yellow + Cyan are in equal proportions, then Green will be.
Example: RGB1(255, 255, 0)+ RGB2(0, 200, 210) =? we can write it like this: RGB1(200+55, 200+55, 0) + RGB2(0, 200+0, 200+10)
Transformation (yellow + cyan = green 200) + RGB1(55, 55, 0) + RGB2(0,0,10)
Additive mixing: RGB( max(55,0), max(55,0), max(0,10) + green 200) = RGB(55, 255, 10)
RGB1(255, 255, 0) + RGB2(0, 200, 210) = RGB(55, 255, 10)
enter code here