Why no body copy color in the customizer?

Hi,
With all the non-techie controls Shapely gives for developing a site, why isn’t body text color one of them under Customizing > Theme Options > Colors?
You have header text, background, link color button color, etc.
Instead, if you want anything but that poor gray color for body text, you have to go into each page and change text color.
Is there a reason why it’s not in the customizer? What would be the custom CSS call be to use a standard color for all text, unless otherwise customized in the copy?

Hello there,

I hope you are doing well today.

The text used in the theme are controlled differently because the theme uses widgets to display the information.
However,for this issue you can contact our developer directly and make a feature request for the font colors.

Here is an easy link:

Best Regards,
Support

By adding this to your additional CSS you can modify the body text any way you want. Hope this helps you.

   /*content text*/
   body {
       -webkit-font-smoothing: antialiased;
       -moz-osx-font-smoothing: grayscale;
       font-size: 14px;
       line-height: 24px;
       font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
       color: #555758; 
       overflow-x: hidden;
       font-weight: 400;
   }