You can change the color of navigation bar via Appearance > Customize > Navigation bar.
Currently, there’s no option to change the menu text size. You can only change it by the following custom CSS
For example, if you want to change it bigger
@media only screen and (max-width: 1280px){
#primary-menu > ul > li {
font-size: 14px;
}
}
Thanks