Is there any way I can make nested callouts in the editor change color according to which callout they belong to ?
Like this?:

Is there any way I can make nested callouts in the editor change color according to which callout they belong to ?
Like this?:

Yup, here’s the CSS snippet to achieve this:
.cm-s-obsidian span.cm-quote-1 {
color: teal;
}
.cm-s-obsidian span.cm-quote-2 {
color: green;
}
.cm-s-obsidian span.cm-quote-3 {
color: red;
}
