X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2Fbits%2FColorTheme.java;h=c5242798217c831502bc3c4a6233a91969b04791;hb=9c1720164b004d462af8284c21fb2666e2affd63;hp=5109dde72d4a6cc87d0c42c3047ecdbd62d979ba;hpb=3096642b82e03fd73c59aade568cb6abec5d65f3;p=fanfix.git diff --git a/src/jexer/bits/ColorTheme.java b/src/jexer/bits/ColorTheme.java index 5109dde..c524279 100644 --- a/src/jexer/bits/ColorTheme.java +++ b/src/jexer/bits/ColorTheme.java @@ -645,6 +645,11 @@ public class ColorTheme { color.setBackColor(Color.CYAN); color.setBold(false); colors.put("ttable.active", color); + color = new CellAttributes(); + color.setForeColor(Color.YELLOW); + color.setBackColor(Color.BLUE); + color.setBold(true); + colors.put("ttable.selected", color); }