I would like to change the way links [[ ]] look. Using @pseudometa’s theme as a basis, I’m trying to change them.
For example, to get a blue highlight, I put bold around highlights, so **==hello==** would appear blue, with this code:
span.cm-strong.cm-highlight {
font-style: initial;
background-color: var(--highlight-blue);
color: #222;
}
body > .app-container div.markdown-preview-view strong > mark {
font-style: initial !important;
background-color: var(--highlight-blue);
color: #222;
}
Now I’d like to apply this logic to links, but I can’t figure it out. I tried replacing cm-strong.cm-highlight with cm-link.cm-highlight but that doesn’t work.
I’m trying to use the console/elements to view what class the links use/are, but I’m not sure I’m using it right, or understanding it.
What cm- kind of thing would I have to use for this?
Thanks!