how about using basic sense like textcolor
Theme writers use CSS which applies to all web sites – not just WordPress driven sites. CSS does follow very clear and pretty simple syntax rules. The correct CSS name for textcolor is “color”.
Black is much easier to read then GRAY!!!!! DUH!!!!
1. That won’t work on all themes – one with a black background, for example.
2. Plain (non-link) text is often black (or near black) on many light themes. Site owners (and visitors) often prefer links that are a different color to plain text.
3. Black text on a white background is not easier to read. It causes glare and eye strain amongst normal users and may create text pixelation problems for those who use screen magnifiers. Very high contrasts between text and background should be avoided unless you are creating a site for a very specific, low-sight, audience (in which case, you’d probably use yellow on black).
Before you decide what is, or what is not, logical to use within a theme’s stylesheet, may I suggest that you try learning about CSS?
https://www.w3schools.com/css/
In the meantime, if you want to change the perfectly acceptable color of your text, try editing {style.css (line 11)
body
color:#666666;
font-family:Verdana,Arial,Helvetica,sans-serif;
font-size:11px;
}
Personally, I think you’d be better advised to leave the text color “as is” and increase the font-size.