Hey there,
What about some menu & text? It still blue...see my attached image.
For these you need to use custom css, there is no settings like for the buttons to change those.
You can follow my example below and change the your desired colors and place it at your site backend > EasySocial > Themes > Custom CSS
[gist type="css"]
/* To change the text and the border-bottom color of the profile header navigation bar*/
body #es .es-profile-header-nav .is-active .es-profile-header-nav__link {
color: #e24a80;
border-bottom-color: #e24a80;
}
/*To change the border-right color of the sidebar*/
body #es .o-tabs--stacked .o-tabs__item.active > .o-tabs__link {
border-right: 2px solid #e24a80;
}
/*To change the border color of the profile header navigation's dropdown links*/
body #es .es-profile-header-nav .is-active > .es-profile-header-nav__dropdown-link {
border-color: #e24a80;
}
/*To change the color of the profile header' title*/
body #es .es-profile-header__title > a {
color: #e24a80;
}
[/gist]