/// Construct a color from a hex pre string, of the format #RRGGBB.Color hexToColor(String pre) { return new Color(int.parse(pre.substring(1, 7), radix: 16) + 0xFF000000);}
/// Construct a color from a hex pre string, of the format #RRGGBB.Color hexToColor(String pre) { return new Color(int.parse(pre.substring(1, 7), radix: 16) + 0xFF000000);}