How can I change the text color to white on Dawn Theme?

Hello,

i managed to change the background color of the page to black with the following code change on base.css

#MainContent {
background: #121212 !important;
}

Now the text doesnt show up at all because the text color is black also
How do i change the color text to white? So its visible everywhere

Im on Dawn Theme

Thank you in advance!

Hey @marET
Kindly share your Store URL and Password if enabled

https://c0241d.myshopify.com/

password: 1111

Hey @marET

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.

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

Best Regards,
Moeed

It worked for the most part ,thank you!

Although still on cart when you add a product , some of the text is still black (quantity ,final price etc)
Also on catalog the tittles + prices of the products

Hey @marET
Add this code in the code I provided above tag

.card__heading {
    color: white !important;
}
.price {
    color: white !important;
}
.cart-item__name {
    color: white !important;
}
.quantity {
    color: white !important;
    border: white solid 1px;
}
button.quantity__button.no-js-hidden {
    color: white !important;
}
cart-remove-button .button {
    color: white !important;
}
span.price.price--end {
    color: white !important;
}
h2.totals__subtotal {
    color: white !important;
}
h1.title.title--primary {
    color: white !important;
}

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

Best Regards,
Moeed