With DOM manipulation you could change your button color. Perhaps in your client script that handles the button click under the pageInit function.
You just get the button object then set the properties. Something like this
document.getElementById("button").style.background='#000000';