Obsidian Publish - how to change links colors? [SOLVED]

What I’m trying to do

I want to customize some things on my Publish site, but even though I’m somewhat comfortable with CSS, I don’t know how to change the values to things that start with #

Things I have tried

I went to this page, for example (Navigation - Developer Documentation) and I can see all the options there, but how will I add them to my publish.css file? Do I just add like

--nav-item-size {
   color: red;
}

?

I was able to make those changes by using the actual classes for each element, e.g.

a.external-link:hover {
    color:#5BCBE7;
}

etc…

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