I'm developing a dashboard using Flexdashboard and I'd like to change the hover and active colors of the Flexdashboard pages Capture and Results using specific colors. The colors to be used are client-specific, that's why I don't want to use Flexdashboard themes. I was able to change the background color of the navbar.
Below image is the current output of color change I've done in the navbar, and the structure of the flexdashboard pages which I'd want the hover color on the links to change

Below is the R-Markdown code to generate the flexdashboard pages
Capture {data-icon="ion-document-text"}
=====================================
Results {data-icon="ion-stats-bars"}
=====================================
Below is the css code hosted under a css file that was used to change the background color of the navbar
.navbar {
background-color: #eb3868 !important;
}
How do I change the hover and active colors from blue to some other color?

