Change every text color to white

Hello,

I am using the dawn theme and wanted to ask if someone knows how to change the text color of the whole theme? Since some texts are in grey and some in White.

Option 1:

Go to customize → Theme settings → colors → change the text color to white.

Option 2:

Open the code editor → open base.css and add this css:

body, body a {
    color: #fff !important;
}

Hello,

both options sadly didn´t work

Can you share your store url?

https://www.filigrana-laserwork.it/

Password: 123456789

all the text is in white, can you specify where is not in white?

The product texts and other texts are by default grey, you can see this at
the product “Weinglas - 2 Stück”, on the main page below “unsere
Philosophie” or at the bottom of the page where the legale notice is. For
the other products or texts that are white I had to change the color in the
text editor to white. Therefore not be able to see it in the editor window
since the background of it is white too. And the color of some text fields
can´t be adjusted.

this is can help:

body a, body {
color: #fff !important;
}

i added it to the top of my base.css. The legal notice and the menu text is white now thanks to your code! But the text below “unsere Philosophie” and the product page text for “Weinglas - 2 Stück” are still in grey.

add this:

p, .product__info-wrapper{
color: #fff !important;
}