I am using a library ngx-materialize which is built on MaterializeCSS and I am trying to build a navbar:
https://sherweb.github.io/ngx-materialize/navbar
using one of Materialize CSS's preset colour class: https://materializecss.com/color.html
<mz-navbar class="blue-grey darken-3">
<a href="/" class="brand-logo center">
LOGO
</a>
</mz-navbar>
This doesn't work as the rendered parent element still has the color of "red": image dev tools
I have tried wrapping the with a div like this:
<mz-navbar>
<div class="blue-grey darken-3">
<a id="dashboard-logo" href="" class="brand-logo center">
LOGO
</a>
</div>
</mz-navbar>
but the results is still the same, how do I change an imported component's color with a library's css classes?