Hello Nancy-
Thanks for the question, and thanks for using the Crio WordPress Theme.
It looks like your link colors are being overwritten by the accessibility system that ensures your text is legible against the background, but you can fix this with a Custom CSS rule. Navigate to Customize > CSS/JS Editor and paste this code into your CSS:
.boldgrid-section.bg-background-color a, .boldgrid-section .bg-background-color a, .boldgrid-section.dynamic-gridblock.bg-background-color a, .boldgrid-section.dynamic-gridblock .bg-background-color a { color: var(--color-1) !important; }
The var(--color-1)
will ensure that it always matches your color selection from the Customizer regardless of the background contrast.