I am using bootstrap 4 with SCSS and have troubles to find the variable which is responsible for the background of an "btn-primary" element which is active.
Of course I could just override the css file like that after the compiling process.
.btn-primary:not(:disabled):not(.disabled):active{
background-color:red;
}
But this is a bit hacky. I would like to undestand how bootstrap is generating this particular color? I am pretty sure I am missing something.
Please see this jsfiddle and click on the test button to see what I mean.
Solved: The color is stored within $primary (Thank you ReSedano)
Just do a
$primary: #ff00ff;
before you load bootstrap.