Hi
I changed the primary color in variables.scss:
$primary-color: #1b3d63 !default;
And also set the hover color of the dropdown to the primary color:
/*** Dropdown ***/
$dropdown-bg-color: #fff !default;
$dropdown-hover-bg-color: $primary-color !default;
After compiling the hover color of the dropdown is still the standard blue:
.dropdown .dropdown-menu .dropdown-item:hover, .dropdown .dropdown-menu .dropdown-item:active {
border-radius: 2px;
color: #fff !important;
transition: all 0.1s linear;
background-color: #4285F4; }
I also changed the brand primary in variables-b4:
$brand-primary: #1b3d63 !default;
Nothing seems to overwrite the standard blue…
Thanks for your help.