You’re probably going to have to use a new selector or class.
something like :
body h1, body h6 {color: #ccc;}
or with a class:
-in the html: <h1 class=”mycolor”></h1>
-then in the style.css: .mycolor {color: #ccc;}
Hope that helps