Changing color of nickname
Is it possible to change a color of nicknames on hud? css.terrorists-text-rgb only changing the small part (letters K from kills, and D from deads).
I don't think there's a CSS variable for it currently. You could create a sidebars/sidebar/player/name/name.append.css file in your theme with these contents:
.name {
color: #ff69b4;
}
If you want different colors depending on if they're CT or T, I think you may need to override sidebars/sidebar/player/name/name.js, import its parent, include the computed colorClass property (like here), then override sidebars/sidebar/player/name/name.html too and add colorClass as another class in this line.
Gonna close this one, feel free to reopen if you're still having trouble.