Issue: In the Trade theme, product and collection cards display a dark background that doesn’t match the store’s global color scheme.
Key insights:
Cards often inherit colors from the section or use theme defaults; some sections (e.g., Featured collection) have their own “Color scheme” setting that can override global colors.
Multiple members requested the store URL/password for precise targeting.
It was noted that the dark card background is effectively hard‑coded in the theme’s card styles.
Solutions proposed:
Check the section’s own color settings in Online Store → Themes → Customize and set the desired scheme there.
If no setting exists, add custom CSS (via Theme settings → Custom CSS) targeting card selectors (e.g., .card, .collection-card, .product-card) to set a new background and adjust text color, using !important as needed.
Outcome: The custom CSS override resolved the issue for the OP. Status: Resolved.
Summarized with AI on December 10.
AI used: gpt-5.
Im using Trade Theme and my color schema is setup to match all my brand colors, but when i apply it to a section where i want to highlight certain products, the product card is not the color i need. same goes for collection cards.
how do i change that? I dont want it to have that dark color.
In the Trade theme, product and collection cards often inherit colors from the section or theme defaults, so even if your overall color scheme matches your brand, individual cards can still show the “dark” default color.
To change this:
Go to Online Store → Themes → Customize.
Open the section where the product or collection cards appear.
Look for section-specific color settings—some sections let you override the default card background, text, and button colors.
If there’s no option in the Customizer, you can add custom CSS to target just those cards. For example:
Welcome to the Shopify Community! Please share your store URL and password (if it’s password-protected), so I can check and provide you with the exact solution.
Hi @aczeko ,
In the Trade theme, the product cards and collection cards don’t fully follow the global color scheme. The dark background you’re seeing is actually hard-coded in the card styles of the theme.
Override it with custom CSS
Go to: Online Store → Themes → Customize → Theme settings → Custom CSS
Add this:
.card,
.collection-card,
.product-card {
background: #ffffff !important; /* change to your color */
color: #000000; /* adjust text if needed */
}