I think you need to change the system's normal color, I'll take a look, hld on
edit: normal_color is in Window_Base...
anyways, if you want all the text in the game to be Black, open up a new script above main, below the AMS
and put this script in
class Window_Base
def normal_color
return Color.new(255, 255, 255, 255)
end
end
and that will make all the text displayed in the game black
(well the text in menu boxes and such)
if you only want it to work with messages (i.e. not the title screen etc..), I'll have to take a look at the AMS