There are three color settings. Normal, Hover, and Active. I would think that some of the settings would be in your theme customization in the admin panel. You can use inspect element to find elements that you want to change.
.ow_main_menu li a {
color: your color;
}
.ow_main_menu li.active a {
color: your color;
}
.ow_main_menu li a:hover {
color: your color;
}