Change inbox badge color to color accent.

This commit is contained in:
Docile-Alligator 2025-07-11 16:11:00 -04:00
parent ee8f5cd70c
commit 303bdb5cb9

View File

@ -265,7 +265,7 @@ public class NavigationWrapper {
private BadgeDrawable getBadgeDrawable(Context context, int inboxCount, View anchorView) {
BadgeDrawable badgeDrawable = BadgeDrawable.create(context);
badgeDrawable.setNumber(inboxCount);
badgeDrawable.setBackgroundColor(customThemeWrapper.getColorPrimaryLightTheme());
badgeDrawable.setBackgroundColor(customThemeWrapper.getColorAccent());
badgeDrawable.setBadgeTextColor(customThemeWrapper.getButtonTextColor());
badgeDrawable.setHorizontalOffset(anchorView.getWidth() / 2);
return badgeDrawable;