You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
351B

  1. import 'dart:ui';
  2. class HexColor extends Color {
  3. static int _getColorFromHex(String hexColor) {
  4. hexColor = hexColor.toUpperCase().replaceAll("#", "");
  5. if (hexColor.length == 6) {
  6. hexColor = "FF" + hexColor;
  7. }
  8. return int.parse(hexColor, radix: 16);
  9. }
  10. HexColor(final String hexColor) : super(_getColorFromHex(hexColor));
  11. }