Can't change color theme on product page and the cart

I can change every other theme and color but it doesn’t change when I try to change the color on my product page and the cart. Does anyone know how I can fix this?

What’s your store url ?

https://6db4b2-3.myshopify.com/products/vanner-day-night

What’s the password to visit your store

jennie

Do you want to change this color to #AE240C ?

I want the background to be beige and the text to be the dark red and also the buy now button

Paste this code in your custom css section
Online Store > Customize > Settings > Custom css

.section-template–19858160812360__main-padding {
background: #f5f5dc;
color: #8B0000;

}

.animate–hover-3d-lift .card-wrapper .card–card, .animate–hover-3d-lift .card-wrapper .card–standard .card__inner, .animate–hover-3d-lift .button:not(.button–tertiary), .animate–hover-3d-lift .shopify-challenge__button, .animate–hover-3d-lift .customer button, .animate–hover-3d-lift .shopify-payment-button__button, .animate–hover-3d-lift .deferred-media .deferred-media__poster-button {
color: #8B0000;
background-color: #f5f5dc;

}

Thank you so much!! The title, price, quantity box, “put in cart” and the outline are still blue, is it easy to change those also?

Yes, you can change that using this code

.product .price .badge, .product .price__container {
color: #AE240C;

}

.quantity {
color: #AE240C !important;

}

If my solution has worked for you kindly like and approve my solution