bmiller252
From above URL, let take the button of login form as sample:
.login button.button:hover {
background: #b83cc3 !important;
}
This is for button in login form specific, if you want to apply it in general, you can use this:
button.button:hover {
background: #b83cc3 !important; /*change to your desired color*/
}