we want all our page and post titles and text to be in back
Could you explain this in a little more detail using a specific example?
I am unable to change page/post title colour – they are orange. Plus the bullet points in the content of page/post are also orange.
Another option to change colors would be to use a CSS editor such as the one that comes with the Jetpack plugin.
Using the Sunspot theme demo site as an example, here is some CSS you could start with to change the links, site title, menu links, linked post titles, and small screen menu links from orange to white:
a,
a:visited,
.site-title,
.site-title a,
.main-navigation li a,
.entry-title a {
color: #fff;
}
@media (max-width: 650px) {
.menu-toggle {
color: #fff;
}
}
You can pick and choose what selectors you want to keep and you can change #fff to a different color code.
I looked for orange colored bullets on posts at https://sunspotdemo.wordpress.com/ but couldn’t find any. I would recommend right-clicking on the bullets you’re seeing them show up as orange so you can look around in the HTML and CSS panels to see if you can find where the color is getting set. Here is a guide to help with learning how to find CSS in case you need it:
https://en.support.wordpress.com/custom-design/how-to-find-your-themes-css/