ProgressBar
 
Loading...
Searching...
No Matches
PBarColor.hpp
Go to the documentation of this file.
1
9#ifndef PBAR_COLOR_HPP
10#define PBAR_COLOR_HPP
11
12#include <string>
13
16namespace PBarColor
17{
19 const std::string RESET = "\033[0m";
21 const std::string BLACK = "\033[30m";
23 const std::string RED ="\033[31m";
25 const std::string GREEN = "\033[32m";
27 const std::string YELLOW = "\033[33m";
29 const std::string BLUE = "\033[34m";
31 const std::string MAGENTA = "\033[35m";
33 const std::string CYAN = "\033[36m";
35 const std::string WHITE = "\033[37m";
36
38 const std::string BOLD_BLACK = "\033[1m\033[30m";
40 const std::string BOLD_RED = "\033[1m\033[31m";
42 const std::string BOLD_GREEN = "\033[1m\033[32m";
44 const std::string BOLD_YELLOW = "\033[1m\033[33m";
46 const std::string BOLD_BLUE = "\033[1m\033[34m";
48 const std::string BOLD_MAGENTA = "\033[1m\033[35m";
50 const std::string BOLD_CYAN = "\033[1m\033[36m";
52 const std::string BOLD_WHITE = "\033[1m\033[37m";
53}
54
55#endif /* PBAR_COLOR_HPP */
Containins colors for ProgressBar class.
const std::string MAGENTA
magenta text
Definition PBarColor.hpp:31
const std::string YELLOW
yellow text
Definition PBarColor.hpp:27
const std::string BLACK
black text
Definition PBarColor.hpp:21
const std::string GREEN
green text
Definition PBarColor.hpp:25
const std::string RED
red text
Definition PBarColor.hpp:23
const std::string BOLD_BLUE
bold blue text
Definition PBarColor.hpp:46
const std::string CYAN
cyan text
Definition PBarColor.hpp:33
const std::string RESET
default color in terminal (aka white)
Definition PBarColor.hpp:19
const std::string BLUE
blue text
Definition PBarColor.hpp:29
const std::string BOLD_CYAN
bold cyan text
Definition PBarColor.hpp:50
const std::string BOLD_YELLOW
bold yellow text
Definition PBarColor.hpp:44
const std::string BOLD_WHITE
bold white text
Definition PBarColor.hpp:52
const std::string BOLD_BLACK
bold black text
Definition PBarColor.hpp:38
const std::string WHITE
white text
Definition PBarColor.hpp:35
const std::string BOLD_GREEN
bold green text
Definition PBarColor.hpp:42
const std::string BOLD_MAGENTA
bold magenta text
Definition PBarColor.hpp:48
const std::string BOLD_RED
bold red text
Definition PBarColor.hpp:40