I'd like to change the row color of a thread with a certain prefix. An add-on does it for stickies, same idea but for a prefix id. Thanks for any help!
You'll typically want to use the .m-colorScheme mixin to target color schemes (light/dark):
Less:
.some-class
{
// normal rules (default color scheme -- light in the default style)
.m-colorScheme({{ $xf.style.getAlternateStyleType() }},
{
// alternate rules (alternate color scheme -- dark in the default style)
});
}
However you can target specific variations if you want: