Is it possible to highlight orange color for a specific tag? (Custom CSS Snippet)

I want to highlight the line tagged by #quotes as orange. Is it possible?

[data-rem-container-tags~="quotes"]
 .rem-text span {
background-color: orange;
}

thank you for the answer.

This works as well. Just note that with data-rem-container-tags as opposed to data-rem-tags you are highlighting all children as well.

This was discussed recently on Discord and @Badjer has a solution for you:

So in your case

[data-rem-tags~="quotes"] {
  background-color: orange;
}

You can get an orange you like here: Color picker tool - CSS: Cascading Style Sheets | MDN

Related: :scroll: Blockquote on the Library which has some tweaked spacing as well.

thank you so much…