The default color for text in Flutter is black .
Read moreHow do you change the color of text dynamically in Flutter?
Edit: if you want different color for every item, u can use function like this, Color getColor(number) { if (number > 0 && number < 100) return Colors. red; if (number >= 100 && number < 200) return Colors .
Read more