XF 2.1 List of custom prefix colors?

frm

Well-known member
I've made a couple myself, but I'd like to add a dozen or so more prefixes to my threads and other areas over time.

It's not that I don't have time to do this, but, has anyone ever dropped a resource of multiple thread prefix styles that can be copied and pasted for pink, brown, fire red, etc., with matching font colors and borders (not necessarily with FontAwesome, but if there is a list like that, I don't mind stripping it out for my personal use).

Even if one, or a few, could drop their own custom prefix combos, we could get a pretty good list going in this thread alone (I'll even start it off)...

If you can point me in the right direction, other than Notepad and a color picker, or post some of yours, thank you! :)
 
CSS:
// Custom Prefix Colors
.label.label--greyBlack {
    color: #fff;
    background: #000;
    border-color: #999;
}
.label.label--orangeFire {
    color: #fff;
    background: #ff9900;
    border-color: #cc3300;
}
.label.label--dirtBrown {
    color: #fff;
    background: #996633;
    border-color: #663300;
}
.label.label--colorArchived {
    color: #000;
    background: #F1D592;
    border-color: #966B4F;
}
.label.label--colorWorship {
    color: #ffd1fb;
    background: #95398d;
    border-color: #c05db8;
}
 
Regardless what I'm doing I can't get it change. I put it in EXTRA.LESS in version 2.2. (latest version) but nothing happens?

Someone know what I have to do?
 
Hello, you can try this one :

Regards, SyTry
 
Top Bottom