hello, does anybody know how to change all the font color in the game (like, in the titlescreen and the menu) to black instead of "default white" ? all, the script ive found so far only modifies the font color in text message and using hex color code for the black color.. looks like there is no default color id for black in RMXP :???:... thx
Tons of Add-Ons -> Ultimate Font Override should do this.
lol use this
class Window_Base < Window
#--------------------------------------------------------------------------
# * 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(0, 0, 0, 128)
end
#--------------------------------------------------------------------------
# * Get System Text Color
#--------------------------------------------------------------------------
def system_color
return Color.new(0, 0, 0, 255)
end
end