Color toColor(List<double> rgb) { return Color.fromARGB(255, (rgb[0] * 255).toInt(), (rgb[1] * 255).toInt(), (rgb[2] * 255).toInt()); }