editor cut/copy/paste
[nikiroo-utils.git] / src / jexer / bits / ColorTheme.java
index ace1ebdde0e31b2d68493020228f9bf32f0c0a22..60eb9bd77bacfc3ef9ec8f0ed1550b782242432e 100644 (file)
@@ -633,6 +633,11 @@ public class ColorTheme {
         color.setBackColor(Color.BLUE);
         color.setBold(false);
         colors.put("teditor", color);
+        color = new CellAttributes();
+        color.setForeColor(Color.BLACK);
+        color.setBackColor(Color.CYAN);
+        color.setBold(false);
+        colors.put("teditor.selected", color);
 
         // TTable
         color = new CellAttributes();
@@ -666,6 +671,13 @@ public class ColorTheme {
         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);
+
     }
 
     /**