private static Color getRandColor()

in tsfile-viewer-web/src/main/java/org/apache/iotdb/ui/util/VerifyCodeUtils.java [210:221]


  private static Color getRandColor(int fc, int bc) {
    if (fc > 255) {
      fc = 255;
    }
    if (bc > 255) {
      bc = 255;
    }
    int r = fc + random.nextInt(bc - fc);
    int g = fc + random.nextInt(bc - fc);
    int b = fc + random.nextInt(bc - fc);
    return new Color(r, g, b);
  }