Creates a color with opacity
static Color withAlpha(Color color, double opacity) { return Color.fromRGBO( color.red, color.green, color.blue, opacity ); }