I have two RGB-Colors, which differ only by 1 in (only!) one of the RGB-values. So there is no RGB-colour between them.
Example:
Color a = new Color( 100, 255, 0, 255);
Color b = new Color( 101, 255, 0, 255);
So how can i mix them to get a colour between them?
Furthermore I need more than one color between them, the best is as much as possible.
Is there another Color class or are there some tricks?

