In response to blip #133867

SNPtheCat said:
Font size for >=1 works, fractional doesn't
Font size has no effect

have you messed around with the feather/blur radius of filter:drop-shadow()? that's...

....................this value -v
{ filter: drop-shadow(black 0 0 1px) }

stacking a few of those looks alright. if you only can only use whole pixel values for that as well, you can do something like this:

svg, .nav-logo a.nav-logo-link { filter: drop-shadow(var(--color-section) 0 0 1px) drop-shadow(var(--color-section) 0 0 1px) drop-shadow(var(--color-section) 0 0 1px); }

with smaller values and more stacked shadows it looks slightly more like a clean stroke. (but again, multiple filters tends to cause lag, especially with complex SVG)

Responses

In response to blip #133884

dba_afish said:
have you messed around with the feather/blur radius of filter:drop-shadow()? that's...

....................this value -v
{ filter: drop-shadow(black 0 0 1px) }

stacking a few of those looks alright. if you only can only use whole pixel values for that as well, you can do something like this:

svg, .nav-logo a.nav-logo-link { filter: drop-shadow(var(--color-section) 0 0 1px) drop-shadow(var(--color-section) 0 0 1px) drop-shadow(var(--color-section) 0 0 1px); }

with smaller values and more stacked shadows it looks slightly more like a clean stroke. (but again, multiple filters tends to cause lag, especially with complex SVG)

That was (and still is) literally my current solution. I hate how you can't turn blue to 0 and spread to 1
Also you can't stack the same color (at least on my machine), you have to change a couple bits