mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-13 09:46:16 +02:00
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"
|
||
|
}
|