Navbar components css

Hi,
I'm using flexdashboard and have changed a lot of the default colors from the default theme to have a custom 'look'. The only thing that I can't seem to get right is the drop-down part from the navigation menu (using data-navmenu).

The default backgroundcolor is white, and on hover and active it's blue. I want to change the blue on hover and active to a custom color but I can't find which elements I need to change this color. Hours of googling and trying things and still can't get it right. I have limited knowledge of css and that doesn't help things either I'm afraid :slight_smile:

If there's anyone who can lead me in the right direction that would be great!
Thanks in advance!

EDIT well only after typing this post I searched and tried some more and found the solution. It's:

.navbar-inverse .dropdown-menu > li > a:hover,
.navbar-inverse .dropdown-menu > li > a:focus {
background-color: xxxx ;
}

and

.navbar-inverse .dropdown-menu > .active > a,
.navbar-inverse .dropdown-menu > .active > a:hover,
.navbar-inverse .dropdown-menu > .active > a:focus {
background-color: xxxx;
}

for the hover color.