QUOTE (zzxzz @ Jan 16 2010, 09:48 PM)

hello, does anybody knows how to change the default "white" font color into black? especially in the
Title screen and
Main menu ive tried using any available message script (such as Dubealex' AMS and Ccoa' UMS) but its only change the message font color, not the "entire font color" in the game... thx..

Hey man how are you, here is how you do it, go to script editor and find Window_Base, then scroll down till you find the following code (about quarter of the way)
CODE
#--------------------------------------------------------------------------
# * Get Normal Text Color
#--------------------------------------------------------------------------
def normal_color
return Color.new(0, 0, 0, 255)
end
#--------------------------------------------------------------------------
# * Get Disabled Text Color
#--------------------------------------------------------------------------
def disabled_color
return Color.new(255, 255, 255, 128)
end
#--------------------------------------------------------------------------
# * Get System Text Color
#--------------------------------------------------------------------------
def system_color
return Color.new(192, 224, 255, 255)
end
#--------------------------------------------------------------------------
# * Get Crisis Text Color
#--------------------------------------------------------------------------
def crisis_color
return Color.new(255, 255, 64, 255)
end
#--------------------------------------------------------------------------
# * Get Knockout Text Color
#--------------------------------------------------------------------------
def knockout_color
return Color.new(255, 64, 0)
end
Once you find this change the RGBH codes (Red, Green, Blue, Hue) to your desired colour, white is (255,255,255,255) and black is (0, 0, 0, 255)