Add 'src/jexer/' from commit 'cf01c92f5809a0732409e280fb0f32f27393618d'
[fanfix.git] / src / jexer / bits / ColorTheme.java
index 68ec69f22305991182f34a03f7f512e7a592a4a1..ffba4d472cc67c36ebda4114e503ba1db545c719 100644 (file)
@@ -647,20 +647,32 @@ public class ColorTheme {
         colors.put("ttable.active", color);
         color = new CellAttributes();
         color.setForeColor(Color.YELLOW);
-        color.setBackColor(Color.BLUE);
+        color.setBackColor(Color.CYAN);
         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);
+        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);
 
+        // TSplitPane
+        color = new CellAttributes();
+        color.setForeColor(Color.WHITE);
+        color.setBackColor(Color.BLUE);
+        color.setBold(false);
+        colors.put("tsplitpane", color);
+
     }
 
     /**