3

I did manage to change the font color locally using <font color="orange">text</font> and the font color of citations using span.cite {color:blue;}.

But I can't figure out how to change the default font color. Right now it's gray and I want it black.

Thank you!

Paul

Paul
  • 328
  • 2
  • 11

1 Answers1

4

You could add at the top of your document:

<style type="text/css">
body p {
  color: #000000;
}
</style>
scoa
  • 19,359
  • 5
  • 65
  • 80
  • Thanks. That put me back on track. I changed the color for a number of other tags such as h2, h3, li and span.MathJax, too. Now all is black. – Paul May 27 '17 at 21:30