Hi,
Sorry for the delay!
You may use the following code snippet to change the menu color within offcanvas:
.offcanvas-menu .offcanvas-inner .sp-module ul > li a,
.offcanvas-menu .offcanvas-inner .sp-module ul > li span { color: red; }
But what you want is the hover color of them is not available in mobile view as it cannot be hover with the finger in that means, but you can see it on Desktop view if your offcanvas is shown all devices!
Here you go with hover and focus codes:
.offcanvas-menu .offcanvas-inner .sp-module ul > li.current.active,
.offcanvas-menu .offcanvas-inner .sp-module ul > li:hover,
.offcanvas-menu .offcanvas-inner .sp-module ul > li:focus,
.offcanvas-menu .offcanvas-inner .sp-module ul > li:hover a,
.offcanvas-menu .offcanvas-inner .sp-module ul > li:focus a
{background: #035AB2; color: #eee;}
Hope this helps!
Best Regards