1. Edit file qa-theme/Donut/qa-donut-layer.php
2. Add doctype function:
function doctype() {
$this->content['script'] = isset($this->content['script']) ? $this->content['script'] : array();
$this->content['script'][] = '
<style type="text/css">
.navbar-default,
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
background-color: red;
}
</style>
';
parent::doctype();
}
3. Replace red with the color you want.