mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 13:23:51 -07:00
chg more ansi color
This commit is contained in:
parent
1429ef20f0
commit
01950bd962
1 changed files with 9 additions and 6 deletions
|
@ -1,11 +1,14 @@
|
||||||
#ifndef __ANSI_H
|
#ifndef __ANSI_H
|
||||||
#define __ANSI_H
|
#define __ANSI_H
|
||||||
|
|
||||||
#define _BLUE_(s) "\x1b[34m" s "\x1b[0m "
|
#define AEND "\x1b[0m "
|
||||||
#define _RED_(s) "\x1b[31m" s "\x1b[0m "
|
|
||||||
#define _GREEN_(s) "\x1b[32m" s "\x1b[0m "
|
#define _BLUE_(s) "\x1b[34m" s AEND
|
||||||
#define _YELLOW_(s) "\x1b[33m" s "\x1b[0m "
|
#define _RED_(s) "\x1b[31m" s AEND
|
||||||
#define _MAGENTA_(s) "\x1b[35m" s "\x1b[0m "
|
#define _GREEN_(s) "\x1b[32m" s AEND
|
||||||
#define _CYAN_(s) "\x1b[36m" s "\x1b[0m "
|
#define _YELLOW_(s) "\x1b[33m" s AEND
|
||||||
|
#define _MAGENTA_(s) "\x1b[35m" s AEND
|
||||||
|
#define _CYAN_(s) "\x1b[36m" s AEND
|
||||||
|
#define _WHITE_(s) "\x1b[37m" s AEND
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue