Returns this as a Color, converting the color to RGB if necessary.
this
Color toColor() { final rgb = RgbColor.from(this); return Color.fromARGB(rgb.alpha, rgb.red, rgb.green, rgb.blue); }