Chaos Project

RPG Maker => General Discussion => Topic started by: fizz on January 16, 2010, 06:56:34 am

Title: [Ask]Changing Font color to black?
Post by: fizz on January 16, 2010, 06:56:34 am
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
Title: Re: [Ask]Changing Font color to black?
Post by: fugibo on January 16, 2010, 08:43:38 am
Tons of Add-Ons -> Ultimate Font Override should do this.
Title: Re: [Ask]Changing Font color to black?
Post by: nathmatt on January 16, 2010, 09:02:03 am
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