How can I change the highlight color via CSS for elements other than markdown text?

I was able to identify the selector using this link as a reference.

.backlink-pane .search-result-file-matched-text,
  .workspace-leaf-content[data-type="search"] .search-result-file-matched-text,
  .internal-query .search-result-file-matched-text {
    background: rgba(146, 214, 230, 0.3);
  }


.cm-s-obsidian span.cm-formatting-highlight,
.cm-s-obsidian span.cm-highlight {
 	background: rgba(146, 214, 230, 0.3);
}

.tree-item-self.nav-folder-title.has-focus,
.is-flashing {
	--text-highlight-bg: rgba(146, 214, 230, 0.3);
}