I want to change the background color of angular mat button on hover.
html
<button style="font-family: 'Nunito'" button mat-button color="primary">Button</button>
css:
button.mat-raised-button:hover {
background-color: 'red';
}
BUt it is not working and I dont know why?