forked from QuantumLS-Studio/ECPPH
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request QuantumLS-Studio#9 from FTS427/main
Fix something
- Loading branch information
Showing
4 changed files
with
43 additions
and
8 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#define NONE \\033[0m | ||
|
||
//control console | ||
#define HIGHLIGHT \\033[1m | ||
#define UNDERLINE \\033[4m | ||
#define BLINK \\033[5m | ||
#define FC \\033[7m | ||
#define DISA \\033[8m | ||
|
||
//font color | ||
#define FBLACK \\033[30m | ||
#define FRED \\033[31m | ||
#define FYELLOW \\033[33m | ||
#define FGREEN \\033[32m | ||
#define FBLUE \\033[34m | ||
#define FCYAN \\033[36m | ||
#define FPURPLE \\033[35m | ||
#define FWHITE \\033[37m | ||
#define FGREY \\033[38m | ||
|
||
//back color | ||
#define BBLACK \\033[40m | ||
#define BRED \\033[41m | ||
#define BYELLOW \\033[43m | ||
#define BGREEN \\033[42m | ||
#define BBLUE \\033[44m | ||
#define BCYAN \\033[46m | ||
#define BPURPLE \\033[45m | ||
#define BWHITE \\033[47m | ||
|
||
#define DISC \\033[?25l | ||
#define AC \\033[?25h |