Hi does anyone know how to change the internal link colours for dark mode? I changed them in general using these snippets off the Github page:
/* Change internal link colour in Preview */
a.internal-link {
color: #E74646;
}
/* Change internal link colour in Edit */
.cm-s-obsidian span.cm-hmd-internal-link {
color: #E74646;
}
/* Change colour of unresolved links */
.markdown-preview-view .internal-link.is-unresolved {
color: #E74646 !important;
opacity: 0.8;
}
I’d like the internal links as a red in light mode (as above) and also in a shade of blue for dark mode. Also, I’m using the Clean Theme and I’m trying to get ride of the underline on internal links:
I tried adding “text-decoration: none;” to the above snippets but that didn’t do anything. Apologies, my CSS knowledge is extremely limited
Thank you!