Hi there,
go to Customizer > Additional CSS and look for this CSS:
.main-navigation:not(.slideout-navigation) .main-nav li.nav-button a {
color: var(--accent);
border: 3px;
border-style: solid;
line-height: 36px;
border-radius: 2px;
margin-left: 20px;
transition: all 0.6s ease 0s;
}
See this line:
color: var(--accent);
Either:
a. Chang the --accent for a different color variable name from your Global Colors
or
b. swap the color for a hex color eg. color: #ff0000;