As per the information provided in the documentation, the instructions for setting styles for the navigation bar are as follows:
<b-navbar toggleable="lg" type="dark" variant="info">
<!-- Or -->
<b-navbar toggleable="lg" type="dark" variant="dark">
However, I am interested in changing the background color to a custom shade like #AABB55
without directly modifying the type
and variant
properties. But it appears challenging to achieve this easily.
Upon reviewing both the documentation and the source code, it seems the options available for customization are limited.
Is there a workaround to adjust this particular property without having to manually alter the <b-navbar>
code?