From a6df4ea3d2bca662e326a5fb01e46b19a17c59aa Mon Sep 17 00:00:00 2001 From: Michael Shirt Date: Thu, 17 Nov 2016 22:27:56 -0700 Subject: [PATCH] Adjusting text colors to add contrast --- scripts/Window_Base.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/Window_Base.rb b/scripts/Window_Base.rb index 9153d28..c24f66d 100644 --- a/scripts/Window_Base.rb +++ b/scripts/Window_Base.rb @@ -41,17 +41,17 @@ class Window_Base < Window when 0 return Color.new(255, 255, 255, 255) when 1 - return Color.new(255, 128, 128, 255) + return Color.new(255, 64, 64, 255) when 2 - return Color.new(128, 255, 128, 255) + return Color.new(0, 224, 0, 255) when 3 - return Color.new(255, 255, 128, 255) + return Color.new(255, 255, 0, 255) when 4 - return Color.new(128, 128, 255, 255) + return Color.new(64, 64, 255, 255) when 5 - return Color.new(255, 128, 255, 255) + return Color.new(255, 64, 255, 255) when 6 - return Color.new(128, 255, 255, 255) + return Color.new(64, 255, 255, 255) when 7 return Color.new(128, 128, 128, 255) else