@gavcloud
The PR that changed the settings was: Use currentColor to style svg by Leilei332 · Pull Request #9316 · TiddlyWiki/TiddlyWiki5 · GitHub, which is in preparation to be able to use Lucide “line based” icons in the future. They are much, much smaller than, what we use now.
What helped for me was, to add the color: … definition to the svg-rule.
Something similar should work for you too.
.wltc-link-to-tab svg{
width: 1.4em;
height: 1.4em;
color: <<colour muted-foreground>>;
}
As you described, SVGs now inherit the color from the “outer” HTML A element, created by TW link-widget. By default A has blue color. …
The link-widget has a class parameter, so it should be straight forward to add a class, similar to my .wltc-... to fix the problem
Hope that helps
-m