Change text color product page (dawn theme)

Topic summary

Issue: After changing button colors on a Shopify Dawn product page, the labels (e.g., “quantidade” and “cor”) became hard to read and did not update with the button color. The requester wants the label text color to match/improve readability.

Key information: A helper requested the store URL; the site link was provided (Astero.com.br). Screenshots show the low-contrast labels and a proposed result.

Proposed solution (CSS):

  • Edit theme CSS (Assets > base.css/style.css/theme.css).
  • Add: .product__info-wrapper.grid__item * { color: black; }
  • This forces all text in the product info section to render in black. A screenshot shows improved readability.

Alternative suggestion: Another participant advised adding code in theme.liquid, but the code snippet was missing (blank), so the exact method is unclear.

Status: No confirmation from the original poster that the issue is resolved. Discussion appears open, with one clear CSS fix provided and an incomplete alternative. CSS refers to stylesheet code that controls visual styling.

Summarized with AI on January 13. AI used: gpt-5.

Thanks for the info,

Check this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.product__info-wrapper.grid__item * {
    color: black;
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!