Reputation: 338
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
Upvotes: 3
Views: 1978
Reputation: 19867
You could add at the top of your document:
<style type="text/css">
body p {
color: #000000;
}
</style>
Upvotes: 4