[Solved] How to make a color brighter


Use RGB values manually:

final int brighter = 25;
Color.rgb(Color.red(color) + brighter, Color.green(color) + brighter, Color.blue(color) + brighter);

You of course would have to make something that checks that any value does not get over 255.

EDIT Palette won’t work with a single color.

4

solved How to make a color brighter