Styling internal links with a different color

If you aren’t using internal [markdown](links.md), you could probably get away with using a few of the custom properties / variables.

body {
  --link-color: salmon;
  --link-color-hover: #fcb3ab;
  --link-external-color: olive;
  --link-external-color-hover: #d1e189 ;
}

These can be color names, hex, rbg, hsl, etc.

woofy31’s looks good though, and it seems like it covers most cases.


https://help.obsidian.md/Extending+Obsidian/CSS+snippets

2 Likes