Hi guys,
I’m trying to modify the highlight color with some custom CSS, but hitting a wall trying to get the following item to show in a more contrasting way:
Anyone know how to target this with a selector? I’ve messed with !important but it’s not working… thank you 
Here’s the CSS I’m using:
.markdown-source-view.mod-cm6 span.cm-selection,
.cm-s-obsidian span.cm-formatting-highlight,
.cm-s-obsidian span.cm-highlight {
background: rgba(255, 255, 0, 0.15);
color: rgba(255, 255, 120, 0.8);
}
.markdown-preview-view mark {
background: rgba(255, 255, 0, 0.15);
color: rgba(255, 255, 120, 0.8);
}