Add this to your "About Me" section of your profile.
Obviously, you can change the word "black" to whatever color you want your background to be.
<style>
body {
background-color: black;
}
</style>
Optionally, you can define RGB colors to set your background if you want a more "fine-tuned" color.
<style>
body {
background-color: rgb(254,40,145);
}
</style>
This link will take you to a website where you can choose the color you want and it will generate the numbers you need to input.