Hey. Thanks for all your work on this project. Tiny bug in color_util.dart line 58. Code: int alpha = (0xff000000 & hex) >> 32; Should be: int alpha = (0xff000000 & hex) >> 24;