stubs for drawing borders
[fanfix.git] / src / jexer / bits / ColorTheme.java
index 68ec69f22305991182f34a03f7f512e7a592a4a1..23bfe906340669a34b71c502d115ec50a5ca3cdb 100644 (file)
@@ -654,11 +654,16 @@ public class ColorTheme {
         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.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);
 
     }