mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Fix activity quote colour for light theme.
This commit is contained in:
parent
dba56d700f
commit
9333504c9f
1 changed files with 1 additions and 2 deletions
|
@ -54,8 +54,7 @@ public class ActivitiesAdapter extends ArrayAdapter<ActivityDetails> {
|
||||||
if (PrefsUtils.isLightThemeSelected(context)) {
|
if (PrefsUtils.isLightThemeSelected(context)) {
|
||||||
linkColor = new ForegroundColorSpan(resources.getColor(R.color.linkblue));
|
linkColor = new ForegroundColorSpan(resources.getColor(R.color.linkblue));
|
||||||
contentColor = new ForegroundColorSpan(resources.getColor(R.color.darkgray));
|
contentColor = new ForegroundColorSpan(resources.getColor(R.color.darkgray));
|
||||||
// TODO
|
quoteColor = new ForegroundColorSpan(resources.getColor(R.color.midgray));
|
||||||
quoteColor = new ForegroundColorSpan(resources.getColor(R.color.darkgray));
|
|
||||||
} else {
|
} else {
|
||||||
linkColor = new ForegroundColorSpan(resources.getColor(R.color.dark_linkblue));
|
linkColor = new ForegroundColorSpan(resources.getColor(R.color.dark_linkblue));
|
||||||
contentColor = new ForegroundColorSpan(resources.getColor(R.color.white));
|
contentColor = new ForegroundColorSpan(resources.getColor(R.color.white));
|
||||||
|
|
Loading…
Add table
Reference in a new issue