Check out minima on GitHub
There’s a bunch of large changes since the last tag 2.5.1 so consider that
Here is 2.5.1 - visited. Note brand color determines link colors
here is a search which reflects main branch
Those tells me that visited color is 15% darker than the configured link color.
Have a look at SASS variables in a tutorial
and instructions in minima docs on setting custom values
You can add a file like assets/main.scss to your repo based on this
---
---
$brand-color: #12abdef;
@import minima;
So you effectively override the default set here
If you want to modify only visited, then you can hack on to the end (browser will honor the last one defined)
---
---
@import minima;
a:visited {
color: green;
}
Or… copy and paste the entire long file where visited was defined in the repo and edit the one line you need to but that is messy.