List<Color> randomColors(int count, List<Color> colors) => List.generate( count, (i) => colors[Random(seedToInt + i).nextInt(colors.length)]);