Fixed incorrect colors in Color Fragment for default/error/placeholder cover art and else where, where colors are extracted from image

This commit is contained in:
Prathamesh More 2021-12-07 22:31:50 +05:30
parent 6dfea43021
commit 05246729de

View file

@ -476,9 +476,10 @@ public class MediaNotificationProcessor {
public static MediaNotificationProcessor errorColor(Context context) {
MediaNotificationProcessor errorColors = new MediaNotificationProcessor(context);
errorColors.backgroundColor = 0x15724528;
errorColors.primaryTextColor = 0x6974059;
errorColors.secondaryTextColor = 0x8684677;
errorColors.backgroundColor = -15724528;
errorColors.primaryTextColor = -6974059;
errorColors.secondaryTextColor = -8684677;
errorColors.actionBarColor = -6974059;
return errorColors;
}
}