getRandomColor static method

Color getRandomColor()

Implementation

static Color getRandomColor() {
  return Color.fromARGB(255, Random.secure().nextInt(200),
      Random.secure().nextInt(200), Random.secure().nextInt(200));
}