Skip to content

Commit

Permalink
codinguser#110 - Revert to use theme_primary color for Accounts which…
Browse files Browse the repository at this point in the history
… have no customized color, because black is too hard
  • Loading branch information
JeanGarf committed Feb 27, 2020
1 parent 273813a commit 2729652
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1291,10 +1291,10 @@ public static int getActiveAccountColorResource(@NonNull String accountUID) {
if (colorCode == null) {
// No color has been found defined in any ancestor

// Use black color
// Use default theme color
iColor = GnuCashApplication.getAppContext()
.getResources()
.getColor(R.color.bpblack);
.getColor(R.color.theme_primary);
}

return iColor;
Expand Down

0 comments on commit 2729652

Please sign in to comment.