if ((boldAccountName != null) && acc.getAccountName()
.startsWith(boldAccountName))
{
- accName.setTextColor(Colors.secondary);
- accAmount.setTextColor(Colors.secondary);
+ accName.setTextColor(Colors.primary);
+ accAmount.setTextColor(Colors.primary);
SpannableString ss = new SpannableString(acc.getAccountName());
ss.setSpan(new StyleSpan(Typeface.BOLD), 0, boldAccountName.length(),
};
private static final HashMap<Integer, Integer> themePrimaryColor = new HashMap<>();
public static @ColorInt
- int secondary;
+ int primary;
@ColorInt
public static int tableRowDarkBG;
public static int profileThemeId = DEFAULT_HUE_DEG;
TypedValue tv = new TypedValue();
theme.resolveAttribute(R.attr.table_row_dark_bg, tv, true);
tableRowDarkBG = tv.data;
- theme.resolveAttribute(R.attr.colorSecondary, tv, true);
- secondary = tv.data;
+ theme.resolveAttribute(R.attr.colorPrimary, tv, true);
+ primary = tv.data;
if (themePrimaryColor.size() == 0) {
for (int themeId : themeIDs) {