C++Spec
1.0.0
BDD testing for C++
Loading...
Searching...
No Matches
term_colors.hpp
Go to the documentation of this file.
1
2
#pragma once
3
4
namespace
CppSpec {
5
6
// the following are Unix/BASH ONLY terminal color codes.
7
constexpr
auto
RESET(
"\033[0m"
);
8
constexpr
auto
BLACK(
"\033[30m"
);
/* Black */
9
constexpr
auto
RED(
"\033[31m"
);
/* Red */
10
constexpr
auto
GREEN(
"\033[32m"
);
/* Green */
11
constexpr
auto
YELLOW(
"\033[33m"
);
/* Yellow */
12
constexpr
auto
BLUE(
"\033[34m"
);
/* Blue */
13
constexpr
auto
MAGENTA(
"\033[35m"
);
/* Magenta */
14
constexpr
auto
CYAN(
"\033[36m"
);
/* Cyan */
15
constexpr
auto
WHITE(
"\033[37m"
);
/* White */
16
constexpr
auto
BOLDBLACK(
"\033[1m\033[30m"
);
/* Bold Black */
17
constexpr
auto
BOLDRED(
"\033[1m\033[31m"
);
/* Bold Red */
18
constexpr
auto
BOLDGREEN(
"\033[1m\033[32m"
);
/* Bold Green */
19
constexpr
auto
BOLDYELLOW(
"\033[1m\033[33m"
);
/* Bold Yellow */
20
constexpr
auto
BOLDBLUE(
"\033[1m\033[34m"
);
/* Bold Blue */
21
constexpr
auto
BOLDMAGENTA(
"\033[1m\033[35m"
);
/* Bold Magenta */
22
constexpr
auto
BOLDCYAN(
"\033[1m\033[36m"
);
/* Bold Cyan */
23
constexpr
auto
BOLDWHITE(
"\033[1m\033[37m"
);
/* Bold White */
24
25
}
// namespace CppSpec
include
formatters
term_colors.hpp
Generated by
1.13.2