-1
What would be the right way to change the background of a button in bootstrap 4 to a custom color:
<button class="btn btn-primary btn-lg">Buscar</button>
for
<button class="btn btn-primary btn-lg" style="background-color: #BLABLA">Buscar</button>
I thought about adding a background-color, the style attribute right on the button, but is this the most correct way?