Custom CSS: How to overwrite blockquote dimming behavior

Blockquotes are pretty much the only elegant way to use manual indentation in Markdown.
For this purpose, however, the dimming of text with increasing indentation/quote level is undesirable.

Is there a way for me to fix this, i.e. that text on all indentation levels has the same color?

1 Like

If you put the following into userstyle.css (options > appearance > show advanced settings > custom stylesheet for rendered Markdown) it should work.

blockquote {
    opacity: 1 !important;
}
2 Likes

Thank you! This was exactly what I was looking for.

1 Like