I am currently working on building a dashboard with Flexdashboard and I want to customize the hover and active colors of the Flexdashboard pages named Capture and Results with specific colors that are unique to the client. I prefer not to use the default Flexdashboard themes for this customization. I have already managed to modify the background color of the navbar.
The image below shows the current appearance of the navbar after I made the color changes and the layout of the Flexdashboard pages where I would like to alter the hover color of the links: https://i.sstatic.net/qCdG4.png
Here is the R-Markdown code used to create the Flexdashboard pages:
Capture {data-icon="ion-document-text";}
=====================================
Results {data-icon="ion-stats-bars";}
=====================================
Also, below is the CSS code located in a separate file that I utilized to modify the background color of the navbar:
.navbar {
background-color: #eb3868 !important;
}
My question is, how can I change the default blue hover and active colors to a different color of my choice?