static Color shiftColor(Color color, int shift) { return Color.fromRGBO( math.max(color.red + shift, 0), math.max(color.green + shift, 0), math.max(color.blue + shift, 0), 1, ); }