I changed the background color in CSS, and as a result I must change almost all of the font colors. Where can I find the different font colors for all of the fonts that are used throughout the theme?
Hello there,
You can find that on the style.css file.
You can change the body font color to white with the following code:
body { color: #fff; }
Headings:
h1, h2, h3, h4, h5, h6 { color: #fff; }
Navigation:
#navigation .nav li a { color: #fff; }
Infoboxes:
.infobox .entry-title a { color: #fff;}
.infobox .entry-excerpt { color: #fff; }
These are the basics. There’s a great tool that will help you on recognizing which CSS classes you need to edit. It’s called firebug and you can get it here: http://getfirebug.com/
With that tool you can inspect the whole website, making changes and checking results on the fly.
Best,
Juan.