Creation of a TeamSpeak 5 theme

So just go to the TeamSpeak installation folder and there to html\client_ui.
In there is a file called 1.css. This is the one you want to edit append to.

Any css value can be set to important to override other changes of that value.
It can be done like this:
property: value !important;

Changing the colors is possible by just changing the root variables:

:root {
    --tsv-shaded-bg: #252A33 !important;
}

Check out this:

Or my version I currently use / work on:
https://gist.githubusercontent.com/Gamer92000/1cfd6d036ea21165ee647892566adb29/raw/3f6ca40fea4698548e637183487322120f39be73/teamspeak.css

3 Likes