79410385

Date: 2025-02-04 01:35:37
Score: 0.5
Natty:
Report link

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
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Low reputation (1):
Posted by: Jan Tungli