static String color2HexStr(Color color) { var str = '#${color.value.toRadixString(16).padLeft(6, '0')}'; return str; }