MATLAB: How to solve Unexpected MATLAB expression in the below line

unexpected matlab expression

if(color ==(255 255 255 )color || color==(0 0 0) || color==(255 0 0) || color==(205 133 63) || color==(101 67 33) || color==(0 134 139) )
Error shows in green and blue value of color white.

Best Answer

map = [255,255,255;0,0,0;255,0,0;205,133,63;101,67,33;0,134,139];
if any(ismember(color,map,'rows'))