diff options
author | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2024-07-12 18:02:47 +0200 |
---|---|---|
committer | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2024-07-12 18:02:47 +0200 |
commit | ed74ab2d27460ec11a29f6d005a003d69104d7c5 (patch) | |
tree | 0ca5295ed6ab640db1d6d5dd4b7fc0d79210ccc5 /term.h | |
download | simple-notification-daemon-ed74ab2d27460ec11a29f6d005a003d69104d7c5.tar.gz simple-notification-daemon-ed74ab2d27460ec11a29f6d005a003d69104d7c5.zip |
Initial commit
Diffstat (limited to 'term.h')
-rw-r--r-- | term.h | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -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 |