Link line colours on graph view

Does anyone know if it’s possible to change the colour of the lines showing links in the graph view? I’m very new to using obsidian and i don’t even know where to begin looking for it myself.

It could be done using CSS. Just replace “#b8b2f3” with the hex code of your desired color.

.graph-view.color-line {
    color: #b8b2f3;
}

For even more customization options regarding the graph view, check this post out:

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.