Change default green color

Is there any way to change the green color that is used in the menus and elsewhere? I’ve customized title colors, links, etc. but need to change the shade of green that is the default.

Hey there,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

/*change menu color*/
.navbar-default .navbar-nav > .active > a{
  color:black;
  background-color: purple;
}

Best regards,
Support.