X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2Fbits%2FColorTheme.java;h=d3a468f416dd3d2986282f7b53653d097ffc4a90;hb=2ce6dab2bbd951e6d0f09f94759efda5ee4b65ac;hp=626a6c8979bd81a451fdbf2c7ea5466cd0d42fdd;hpb=55d2b2c2b29ce51f4f910448a115073371deeae8;p=fanfix.git diff --git a/src/jexer/bits/ColorTheme.java b/src/jexer/bits/ColorTheme.java index 626a6c8..d3a468f 100644 --- a/src/jexer/bits/ColorTheme.java +++ b/src/jexer/bits/ColorTheme.java @@ -437,6 +437,23 @@ public final class ColorTheme { color.setBold(true); colors.put("tlist.inactive", color); + // TStatusBar + color = new CellAttributes(); + color.setForeColor(Color.BLACK); + color.setBackColor(Color.WHITE); + color.setBold(false); + colors.put("tstatusbar.text", color); + color = new CellAttributes(); + color.setForeColor(Color.RED); + color.setBackColor(Color.WHITE); + color.setBold(false); + colors.put("tstatusbar.button", color); + color = new CellAttributes(); + color.setForeColor(Color.WHITE); + color.setBackColor(Color.BLUE); + color.setBold(false); + colors.put("tstatusbar.selected", color); + // TEditor color = new CellAttributes(); color.setForeColor(Color.WHITE);