Toggle button with text inside?

Hello ! is it possible to create togglebutton with text inside?

Yes, make it yourself in JavaScript, make something like:
< somebutton ng-click=“toggle()” >

and then in javascript:

$scope.toggle = function(){
Changing the appearance of the button here and possible chaning a boolean
}