Response
For some reason Neospring is ignoring my setting to use the legacy dark theme, so I've updated my CSS to support the new theme.
I hate how I now have to put my font settings under html:not(.legacy) *
. Surely there's a better way to distinguish themes than having one giant stylesheet and giving HTML a class, and surely there's a better way to set different fonts in different themes than with wildcards. I haven't read the code though, so IDK.
Comment
Reactions
Replies
Add a reply
It's easier to replace everything in the file that was
:is(.app *)
with:not(.legacy *)
than it is to invert the styles.Fixed the font thing.