Example #1
0
 public Color getRandomLightColor() {
   return Color.fromByte(getRandomByte((byte) 7));
 }
Example #2
0
 public Color getRandomDarkColor() {
   return Color.fromByte(getRandomByte((byte) 7, (byte) 9));
 }
Example #3
0
 public Color getRandomColor() {
   return Color.fromByte(getRandomByte((byte) 16));
 }