Let's calculate the result of the "additive" color mixing of : RGB(255, 200, 0) + RGB(0, 210, 200) .q1
Possible solutions:
1.) RGB(max(255, 0), max(200, 210), max(200, 0)) = RGB(255, 210, 200)
2.) RGB((55+255)/2, (210+210)/2, (0+200)/2) = RGB(155, 210, 100)
As you can see, the first solution, which is most often used as "additive" color mixing, gives a completely wrong result. (We get the same wrong color mixing with HSL and HSV transformations.) In the picture, we can see that the second solution gives a much more correct result.
See on the webpage:https://www-72-sk.translate.goog/menu.php?m=RGB&_x_tr_sl=auto&_x_tr_tl=en&_x_tr_hl=en or https://www.72.sk/menu.php?m=RGB[![enter image description here]1]1