You can edit the css file directly from admin in wordpress. Go to appearance>editor>styles>Style.css
You are looking to change the body font color, probabaly near the top. You will need to use the hex code of the color you want to change it to.
http://www.december.com/html/spec/color.htmlMine looks like this.
Notice the line that says color: #000; this means my text is black. Make sure you use US spelling in the css file, as it doesn't recognise UK spelling.
body {
font-family: arial,sans-serif;
color: #000;
font-size: 67.5%;
background-color: #fff;
font-size: 12px;
padding: 0 0 0 0;
margin: 0 0 0 0;
}