How can I change the color of menu text and product headings?

wanting to make my menu writing grey but my headings for products white how can i do this? any help greatly appreciated

Hii, @rentwithc
Kindly share your store URL so,
I can solve it perfectly.
Thank You.

https://rentwithc.com/collections/frontpage

Hii, @rentwithc
Paste this code on top of the theme.scss file.

.section-header.text-center {
    color: white  !important;
}

Thank You.

@rentwithc

  1. Go to your store. Click on Actions > Edit Code

  2. Go to Assets > theme.scss.css add below lines at the bottom of the file.

.grid-view-item__title {
color: white !important;
}


If helpful then please Like and Accept Solution.

that has changed the page headings to white but i would also like the product titles white

@rentwithc
Paste this code on top of the theme.scss file.

.h4.grid-view-item__title.product-card__title {
    color: white !important;
}