X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2Fbits%2FColorTheme.java;h=86fc9b28d6a03f34a738b5ee7d4658ae859c5a2e;hb=2e1384cc5018840e683bf29f705c5c08125325a6;hp=68ec69f22305991182f34a03f7f512e7a592a4a1;hpb=68ee64d06f760a74b24e0a0cc9b47a160daeec75;p=fanfix.git diff --git a/src/jexer/bits/ColorTheme.java b/src/jexer/bits/ColorTheme.java index 68ec69f..86fc9b2 100644 --- a/src/jexer/bits/ColorTheme.java +++ b/src/jexer/bits/ColorTheme.java @@ -656,6 +656,11 @@ public class ColorTheme { color.setBold(false); colors.put("ttable.heading", color); color = new CellAttributes(); + color.setForeColor(Color.BLUE); + color.setBackColor(Color.WHITE); + color.setBold(false); + colors.put("ttable.heading.selected", color); + color = new CellAttributes(); color.setForeColor(Color.WHITE); color.setBackColor(Color.BLUE); color.setBold(true);