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 :pray:

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);
}

The following adds highlighting for me, but not sure if this is what you actually want:

span.cm-em.cm-link.cm-list-1 {
    background: rgba(255, 255, 0, 0.15);
}

Angel

@Angel thanks, that didn’t work but this did

.cm-s-obsidian .cm-selection,
.cm-s-obsidian .cm-formatting-highlight,
.cm-s-obsidian .cm-highlight {
  background: rgba(255, 255, 0, 0.15);
  color: rgba(255, 255, 120, 0.8);
}

.cm-s-obsidian .obsidian-search-match-highlight .cm-url,
.cm-s-obsidian .obsidian-search-match-highlight .cm-link {
  color: white;
}

Still not sure if it’s correct (meaning: optimally specific) but “it works for now”

Good news. Thanks for sharing the css.

Angel