|
From: Crossfire C. r. messages.
<cro...@li...> - 2020-11-24 22:08:02
|
Revision: 21564
http://sourceforge.net/p/crossfire/code/21564
Author: partmedia
Date: 2020-11-24 22:07:54 +0000 (Tue, 24 Nov 2020)
Log Message:
-----------
Adjust standard theme background colors
The colors are more muted, somewhat lighter, to give better contrast on
the default light colored background.
Submitted by: DraugTheWhopper (patch #372)
Modified Paths:
--------------
client/trunk/gtk-v2/themes/Standard
Modified: client/trunk/gtk-v2/themes/Standard
===================================================================
--- client/trunk/gtk-v2/themes/Standard 2020-11-24 22:07:50 UTC (rev 21563)
+++ client/trunk/gtk-v2/themes/Standard 2020-11-24 22:07:54 UTC (rev 21564)
@@ -154,13 +154,15 @@
style "inv_cursed"
{
- base[NORMAL] = "red"
+ # "tomato" is a more muted color than "red", better contrast --DTW
+ base[NORMAL] = "tomato"
}
widget_class "inv_cursed" style "inv_cursed"
style "inv_magical"
{
- base[NORMAL] = "blue"
+ # "skyblue" is more muted than "blue", *far* better contrast --DTW
+ base[NORMAL] = "skyblue"
}
widget_class "inv_magical" style "inv_magical"
@@ -167,7 +169,9 @@
# You owe gold for these
style "inv_unpaid"
{
- text[NORMAL] = "gold"
+ # Not only is "wheat" more muted than "gold",
+ # but I changed it to color the background, not the text. --DTW
+ base[NORMAL] = "wheat"
}
widget_class "inv_unpaid" style "inv_unpaid"
@@ -191,7 +195,8 @@
#
style "spell_denied"
{
- base[NORMAL] = "red"
+ # "tomato" is more muted than "red", better contrast --DTW
+ base[NORMAL] = "tomato"
}
widget_class "spell_denied" style "spell_denied"
@@ -203,7 +208,8 @@
style "spell_attuned"
{
- base[NORMAL] = "green"
+ # "lightgreen" is more muted than "green", better contrast --DTW
+ base[NORMAL] = "lightgreen"
}
widget_class "spell_attuned" style "spell_attuned"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|