How can I change the text color on my Origin Theme product page?

The color of the text on this page is black even though I have the color scheme text set to white. How do I change this text so that it is white? Thank you.

https://www.laurelrose.art/products/moon-kissed-pines-framed-canvas-print

Add this code in your section-main-product.css :

.product__description span {
    color: white !important;
}
2 Likes

A colour setting seems to be overriding the colour scheme you have selected.

In your CSS file, you can add this code:

.product__description span {
   color: rgba(var(--color-foreground), 0.75) !important;
}
1 Like

1 Like