aboutsummaryrefslogtreecommitdiff
path: root/term.h
diff options
context:
space:
mode:
Diffstat (limited to 'term.h')
-rw-r--r--term.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/term.h b/term.h
new file mode 100644
index 0000000..7460982
--- /dev/null
+++ b/term.h
@@ -0,0 +1,16 @@
+#ifndef TERM_H
+#define TERM_H
+
+#define KDIM "\x1B[2m"
+#define KITAL "\x1B[3m"
+
+#define KNRM "\x1B[0m"
+#define KRED "\x1B[31m"
+#define KGRN "\x1B[32m"
+#define KYEL "\x1B[33m"
+#define KBLU "\x1B[34m"
+#define KMAG "\x1B[35m"
+#define KCYN "\x1B[36m"
+#define KWHT "\x1B[37m"
+
+#endif