Hi,
1. If you are referring to the gold color of the sticky sidebar toggle ( that opens your sidebar with the filter ) it can be changed by adding this CSS to wp-admin > Appearance => Customize > Custom CSS:
@media screen and (max-width: 760px) {
.sticky_sidebar_enabled #toggle-mobile-sidebar-button {
background: #f00;
}
}
2. You can change the color of the menu lines with this Custom CSS:
#main-nav > li:hover > a:before, #main-nav > .current_page_item > a:before, #main-nav > .current-menu-item > a:before, #main-nav > .current_page_item > a:hover:before, #main-nav > .current-menu-item > a:hover:before {
color: #62c491;
}
Please let me know how it works.