You can add a pressed and hover state to your style sheet to make it behave as you wish
QPushButton { ... }
QPushButtonressed {...}
QPushButton:hover {...}
QPushButton:disabled {...}
You probably want to put in
color: red;
background: (whatever color you want)
Bookmarks