X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;ds=sidebyside;f=src%2Fjexer%2Fbits%2FColorTheme.java;h=ace1ebdde0e31b2d68493020228f9bf32f0c0a22;hb=027de5ae322ef58d3bc74051d3aa20847455361a;hp=86fc9b28d6a03f34a738b5ee7d4658ae859c5a2e;hpb=2e1384cc5018840e683bf29f705c5c08125325a6;p=fanfix.git diff --git a/src/jexer/bits/ColorTheme.java b/src/jexer/bits/ColorTheme.java index 86fc9b2..ace1ebd 100644 --- a/src/jexer/bits/ColorTheme.java +++ b/src/jexer/bits/ColorTheme.java @@ -647,23 +647,23 @@ public class ColorTheme { colors.put("ttable.active", color); color = new CellAttributes(); color.setForeColor(Color.YELLOW); - color.setBackColor(Color.BLUE); + color.setBackColor(Color.CYAN); color.setBold(true); colors.put("ttable.selected", color); color = new CellAttributes(); color.setForeColor(Color.BLACK); color.setBackColor(Color.WHITE); color.setBold(false); - colors.put("ttable.heading", color); + colors.put("ttable.label", color); color = new CellAttributes(); color.setForeColor(Color.BLUE); color.setBackColor(Color.WHITE); color.setBold(false); - colors.put("ttable.heading.selected", color); + colors.put("ttable.label.selected", color); color = new CellAttributes(); color.setForeColor(Color.WHITE); color.setBackColor(Color.BLUE); - color.setBold(true); + color.setBold(false); colors.put("ttable.border", color); }