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
15namespace PBarColor
16{
18 const std::string RESET = "\033[0m";
20 const std::string BLACK = "\033[30m";
22 const std::string RED ="\033[31m";
24 const std::string GREEN = "\033[32m";
26 const std::string YELLOW = "\033[33m";
28 const std::string BLUE = "\033[34m";
30 const std::string MAGENTA = "\033[35m";
32 const std::string CYAN = "\033[36m";
34 const std::string WHITE = "\033[37m";
35
37 const std::string BOLD_BLACK = "\033[1m\033[30m";
39 const std::string BOLD_RED = "\033[1m\033[31m";
41 const std::string BOLD_GREEN = "\033[1m\033[32m";
43 const std::string BOLD_YELLOW = "\033[1m\033[33m";
45 const std::string BOLD_BLUE = "\033[1m\033[34m";
47 const std::string BOLD_MAGENTA = "\033[1m\033[35m";
49 const std::string BOLD_CYAN = "\033[1m\033[36m";
51 const std::string BOLD_WHITE = "\033[1m\033[37m";
52}
53
54#endif /* PBAR_COLOR_HPP */
PBarColor namespace containing colors for ProgressBar class.
const std::string MAGENTA
magenta text
Definition PBarColor.hpp:30
const std::string YELLOW
yellow text
Definition PBarColor.hpp:26
const std::string BLACK
black text
Definition PBarColor.hpp:20
const std::string GREEN
green text
Definition PBarColor.hpp:24
const std::string RED
red text
Definition PBarColor.hpp:22
const std::string BOLD_BLUE
bold blue text
Definition PBarColor.hpp:45
const std::string CYAN
cyan text
Definition PBarColor.hpp:32
const std::string RESET
default color in terminal (aka white)
Definition PBarColor.hpp:18
const std::string BLUE
blue text
Definition PBarColor.hpp:28
const std::string BOLD_CYAN
bold cyan text
Definition PBarColor.hpp:49
const std::string BOLD_YELLOW
bold yellow text
Definition PBarColor.hpp:43
const std::string BOLD_WHITE
bold white text
Definition PBarColor.hpp:51
const std::string BOLD_BLACK
bold black text
Definition PBarColor.hpp:37
const std::string WHITE
white text
Definition PBarColor.hpp:34
const std::string BOLD_GREEN
bold green text
Definition PBarColor.hpp:41
const std::string BOLD_MAGENTA
bold magenta text
Definition PBarColor.hpp:47
const std::string BOLD_RED
bold red text
Definition PBarColor.hpp:39