I’m trying to change the color of internal links in edit and reading mode. Everything is working as expected when the links don’t appear in a dataview table, and when I’m in reading mode. The below is the content of the CSS snippet I’m using:
/* << EDITING link color INTERNAL >> */
.cm-s-obsidian span.cm-hmd-internal-link {
font-weight: 400;
color: green !important;
}
/* << READING link color INTERNAL >> */
.markdown-preview-view .internal-link {
font-weight: 400;
color: green !important;
}