I use NewsBlur in dark mode, and it works well for most blogs that I read.
However, one particular blog, Language Log, frequently changes text color to red and blue for quotations. They use <span> tags with inline style rules to change the color.
This looks fine on their website, which uses a light background:
If anyone has a similar issue, here are the style rules I used for this case:
/* Change Language Log's default dark blue to light blue, if NewsBlur is using dark theme */
body.NB-dark p span[style="color: #000080;"] { color: #99aaee !important; }
/* Change Language Log's default dark red to light red, if NewsBlur is using dark theme */
body.NB-dark p span[style="color: #800000;"] { color: #ee99aa !important; }
@samuelclay@steanne How do I get these custom style rules to propagate to the iOS app? Since they are applied in the “account” section, I assumed they’d follow me across platforms.