mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-19 13:29:54 +00:00
Adjusting text colors to add contrast
This commit is contained in:
parent
83d6e46421
commit
a6df4ea3d2
1 changed files with 6 additions and 6 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue