forked from lix-project/lix
14 lines
283 B
C++
14 lines
283 B
C++
|
#pragma once
|
||
|
|
||
|
namespace nix
|
||
|
{
|
||
|
/* Some ANSI escape sequences. */
|
||
|
#define ANSI_NORMAL "\e[0m"
|
||
|
#define ANSI_BOLD "\e[1m"
|
||
|
#define ANSI_FAINT "\e[2m"
|
||
|
#define ANSI_RED "\e[31;1m"
|
||
|
#define ANSI_GREEN "\e[32;1m"
|
||
|
#define ANSI_YELLOW "\e[33;1m"
|
||
|
#define ANSI_BLUE "\e[34;1m"
|
||
|
}
|