Thanks @pfm ! Here’s a snippet to adjust the link formatting. Let me know if you have any issues with this:
/* Wikilink URL */
.cm-s-obsidian span.cm-url.cm-string:not(.cm-hmd-footnote-url) {
color: var(--shade-30) !important;
}
/* Link brackets */
.cm-s-obsidian span.cm-formatting-link,
.cm-s-obsidian span.cm-formatting-image.cm-link,
.cm-s-obsidian span.cm-formatting-link-string.cm-url.cm-string {
color: var(--shade-20) !important;
}
/* Footnote link brackets */
.cm-s-obsidian pre.HyperMD-footnote span.cm-link.cm-hmd-footnote.cm-formatting {
color: var(--shade-20) !important;
}
You can play around with the color values. The theme provides various shades of grey from --shade-10
to --shade-90
, though you can use any color you wish.