« get me outta code hell

tui-lib - Pure Node.js library for making visual command-line programs (ala vim, ncdu)
about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--util/ansi.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/util/ansi.js b/util/ansi.js
index 0ee1bc1..564fdf8 100644
--- a/util/ansi.js
+++ b/util/ansi.js
@@ -96,6 +96,12 @@ const ansi = {
     return `${ESC}[7m`
   },
 
+  invertOff() {
+    // Un-inverts the foreground and backgrund colors.
+
+    return `${ESC}[27m`
+  },
+
   requestCursorPosition() {
     // Requests the position of the cursor.
     // Expect a stdin-result '\ESC[l;cR', where l is the line number (1-based),