stubs for TTableWidget
[fanfix.git] / src / jexer / bits / ColorTheme.java
index 9ac4986b8c46961d64f72560e799526bb0ee440c..5109dde72d4a6cc87d0c42c3047ecdbd62d979ba 100644 (file)
@@ -634,6 +634,18 @@ public class ColorTheme {
         color.setBold(false);
         colors.put("teditor", color);
 
+        // TTable
+        color = new CellAttributes();
+        color.setForeColor(Color.WHITE);
+        color.setBackColor(Color.BLUE);
+        color.setBold(false);
+        colors.put("ttable.inactive", color);
+        color = new CellAttributes();
+        color.setForeColor(Color.BLACK);
+        color.setBackColor(Color.CYAN);
+        color.setBold(false);
+        colors.put("ttable.active", color);
+
     }
 
     /**