Change background color of all pages

I’m trying to create all my pages with a black background and white text. I tried asking this question on another thread:

https://colorlibsupport.com/t/how-to-make-a-specific-page-body-content-colorful/#post-33621
Unfortunately didn’t realize that post was in the UNITE forum and not the Sparkling forum. Sorry about that.

Any help you can give would be much appreciated.
Thanks!

Hi @kbhmedia,

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

You can achieve this by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.

Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS

div.post-inner-content {
  background-color: #000;
  color: #fff;
}

div.post-inner-content .entry-content,
div.post-inner-content .entry-meta a,
div.post-inner-content .entry-title a,
div.post-inner-content .entry-title{
    color: #fff !important;
}

Best Regards,
Movin