How to create indents without color change

Hi, I have a question regarding indents.
As you can see below, my indents always have this fade in color.
I would like to know how I can make it the same color as my text, which is white.
image

Thank you!

@cph5489 welcome to the forum.

In userstyle.css you could try adding:

     blockquote {
         opacity: 1;
        /* changes the blockquote text from the default of 0.7 */
    }

and I believe that if you want to change the border as well it would be:

     blockquote {
         border-left: 4px solid #FFFFFF;
        /* sets the colour of the blockquote border */
         opacity: 1;
        /* changes the blockquote text from the default of 0.7 */
    }
3 Likes

Thank you so much!
It worked like a charm.

And just to make sure:
There’s currently no support for custom css styling on the Android app, right?

Correct

1 Like