I am trying to change the background color in Angular using the md-toolbar directive without relying on CSS within a style tag. My goal is to accomplish this directly within the md-toolbar directive. Here is the relevant Angular code:
<md-toolbar class="md-hue-2">
<div class="md-toolbar-tools">
<p><strong>Classified Store</strong></p>
<md-button>
<md-icon class="mdi mdi-plus-circle"></md-icon>
Classified Press Button
</md-button>
</div>
</md-toolbar>