Support How to add colors to users?

cigarette

Registered
I've been trying to this for a while but i was wondering how can I add users their respective group color here

Screenshot 2024-02-19 at 4.26.20 PM.png

and here
Screenshot 2024-02-19 at 4.26.25 PM.png

as you can see all the usernames are white even tho our users have colored names.
 
Solution
I've been trying to this for a while but i was wondering how can I add users their respective group color here

View attachment 12520

and here
View attachment 12521

as you can see all the usernames are white even tho our users have colored names.

I actually realized I provided the wrong info you modify this template.

"app_username_styles.less"​

With this info
Less:
.username--admin {
    text-shadow: #2b65ec 1px 1px 30px;
    color: #7F00FF;
    font-weight: bold;
    // background: url(https://i.imgur.com/dPuzTEl.gif);
    animation: neon 5s infinite;
    -webkit-text-fill-color: unset;
}

@keyframes neon {
    0%,100% {
        text-shadow: 0 0 1vw #fa1c16,0 0 3vw #fa1c16,0 0 10vw #fa1c16,0 0 10vw #fa1c16,0 0 .4vw #fed128,.5vw .5vw .1vw...

ktmgv5

Registered
Paste this into your User group of choice under the Username CSS section.
CSS:
position: relative;
    letter-spacing: .02em;
    font-weight: 600;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: border-box,text;
    background-image: url(https://media.giphy.com/media/eYRGWfchREFUUlXT7P/giphy.gif),repeating-linear-gradient(90deg, #44dbff 25%, #e4ff00 47%, #00ff1d 53%, #44dbff 75%);
    background-size: 7em,10em;
    text-shadow: 0.75px 0.75px 7px #0071ff !important;
    animation: refund-god-anim 6s linear infinite;


1708488726066.png1708488832926.png
 

ktmgv5

Registered
I've been trying to this for a while but i was wondering how can I add users their respective group color here

View attachment 12520

and here
View attachment 12521

as you can see all the usernames are white even tho our users have colored names.

I actually realized I provided the wrong info you modify this template.

"app_username_styles.less"​

With this info
Less:
.username--admin {
    text-shadow: #2b65ec 1px 1px 30px;
    color: #7F00FF;
    font-weight: bold;
    // background: url(https://i.imgur.com/dPuzTEl.gif);
    animation: neon 5s infinite;
    -webkit-text-fill-color: unset;
}

@keyframes neon {
    0%,100% {
        text-shadow: 0 0 1vw #fa1c16,0 0 3vw #fa1c16,0 0 10vw #fa1c16,0 0 10vw #fa1c16,0 0 .4vw #fed128,.5vw .5vw .1vw #806914;
        color: #FED128
    }

    50% {
        text-shadow: 0 0 .5vw #800e0b,0 0 1.5vw #800e0b,0 0 5vw #800e0b,0 0 5vw #800e0b,0 0 .2vw #800e0b,.5vw .5vw .1vw #40340a;
        color: #806914
    }
}
 
Solution
Back
Top Bottom