Hello @simsdesign,
Please add below given CSS to change of the mobile menu view link by going to Admin Panel > Appearance > Customize > Additional CSS.
@media only screen and (max-width: 767px){
#mobile-trigger .fa-bars:before {
color: #000;
}
}
Now to change background color of the menu section add below given CSS.
ul#menu-main-menu,
ul.sub-menu[id*="mm-"] {
background: #f00;
}
You can change the color code as per your requirement.
Hope this helps.
Thank you.