צהריים טובים,
לצערי אין אפשרות מובנית להגדיר את זה.
אבל נסי להכניס את הקוד הבא ל-Live CSS ולהגדיר את הצבעים שאת רוצה:
.button:hover {
background-color: #e6e6e6;
border-color: rgba(0, 0, 0, 0.4);
color: #333333;
text-decoration: none;
background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
-webkit-transition: background-image 0.3s linear;
-moz-transition: background-image 0.3s linear;
-ms-transition: background-image 0.3s linear;
-o-transition: background-image 0.3s linear;
transition: background-image 0.3s linear;
}