Fix activity quote colour for light theme.

This commit is contained in:
Mark Anderson 2015-06-08 22:26:11 +01:00
parent dba56d700f
commit 9333504c9f

View file

@ -54,8 +54,7 @@ public class ActivitiesAdapter extends ArrayAdapter<ActivityDetails> {
if (PrefsUtils.isLightThemeSelected(context)) {
linkColor = new ForegroundColorSpan(resources.getColor(R.color.linkblue));
contentColor = new ForegroundColorSpan(resources.getColor(R.color.darkgray));
// TODO
quoteColor = new ForegroundColorSpan(resources.getColor(R.color.darkgray));
quoteColor = new ForegroundColorSpan(resources.getColor(R.color.midgray));
} else {
linkColor = new ForegroundColorSpan(resources.getColor(R.color.dark_linkblue));
contentColor = new ForegroundColorSpan(resources.getColor(R.color.white));