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)) {
|
||||
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));
|
||||
|
|
Loading…
Add table
Reference in a new issue