How to change accent colour of text – Prestige Theme

Hi! Does anyone know how to change the accent colour used across the Prestige theme? Right now a lot of my accent text is showing up in this washed out grey shade and I would prefer it to be black. This isn’t available to change within the theme settings section. Specifically product prices and the (cart, login, search) titles within my menu header I’d like to be black. See images below.

Thank you in advance,
Emily

Hey @emilyaugstudios

Follow these Steps:

  1. Go to Online Store

  2. Edit Code

  3. Find theme.liquid file

  4. Add the following code in the bottom of the file above tag


RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed

Hi Moeed, that worked on the menu items thank you so much! The only thing it hasn’t changed is the price colour, which is h6 so it should be working. Do I need to target the price code specifically? Thank you!

Hey @emilyaugstudios

Keep the previous code and add this new code above in the end of the theme.liquid file

sale-price.h4.text-subdued {
    color: black !important;
}

RESULT:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

Best Regards,
Moeed