wip ttable
[fanfix.git] / src / jexer / bits / ColorTheme.java
index c5242798217c831502bc3c4a6233a91969b04791..68ec69f22305991182f34a03f7f512e7a592a4a1 100644 (file)
@@ -650,6 +650,16 @@ public class ColorTheme {
         color.setBackColor(Color.BLUE);
         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);
+        color = new CellAttributes();
+        color.setForeColor(Color.WHITE);
+        color.setBackColor(Color.BLUE);
+        color.setBold(true);
+        colors.put("ttable.border", color);
 
     }