1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
# Patch taken from Fedora newt 0.52.2-7; makes the default colors
# more 8-color-display friendly.
#
diff -ruN newt-0.52.2-old/newt.c newt-0.52.2/newt.c
--- newt-0.52.2-old/newt.c 2006-06-20 16:13:12.000000000 +0000
+++ newt-0.52.2/newt.c 2006-06-20 16:13:24.000000000 +0000
@@ -506,21 +506,21 @@
"red", "lightgray", /* title fg, bg */
"lightgray", "red", /* button fg, bg */
"red", "lightgray", /* active button fg, bg */
- "yellow", "blue", /* checkbox fg, bg */
- "blue", "brown", /* active checkbox fg, bg */
- "yellow", "blue", /* entry box fg, bg */
+ "lightgray", "blue", /* checkbox fg, bg */
+ "lightgray", "red", /* active checkbox fg, bg */
+ "lightgray", "blue", /* entry box fg, bg */
"blue", "lightgray", /* label fg, bg */
"black", "lightgray", /* listbox fg, bg */
- "yellow", "blue", /* active listbox fg, bg */
+ "lightgray", "blue", /* active listbox fg, bg */
"black", "lightgray", /* textbox fg, bg */
- "lightgray", "black", /* active textbox fg, bg */
+ "lightgray", "red", /* active textbox fg, bg */
"white", "blue", /* help line */
- "yellow", "blue", /* root text */
+ "lightgray", "blue", /* root text */
"blue", /* scale full */
"red", /* scale empty */
"blue", "lightgray", /* disabled entry fg, bg */
"black", "lightgray", /* compact button fg, bg */
- "yellow", "red", /* active & sel listbox */
+ "lightgray", "red", /* active & sel listbox */
"black", "brown" /* selected listbox */
};
|