Change font color on pages

I found the code to change the post font color to black, but can you also provide the code to change the page font color to black? Thank you!

Hi @sarahp,

I hope you are well today and thank you for your question.

You can change page color to black by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

.entry-content {
    color: #000;
}

Best Regards,
Movin

Thank you. I now realize I also need to know how to change all the headers to black as well. Is there different code for each header size?

You can use below CSS code to change header color to black.

.entry-title,
.entry-title a {
    color: #000;
}