QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
Loading...
Searching...
No Matches
console_colours.hpp File Reference
#include "config.hpp"
#include <unistd.h>

Namespaces

namespace  quickcpplib
 The QuickCppLib namespace.
 
namespace  quickcpplib::_xxx
 Per commit unique namespace to prevent different git submodule versions clashing.
 
namespace  quickcpplib::_xxx::console_colours
 
namespace  quickcpplib::_xxx::console_colours::detail
 

Functions

std::ostream & quickcpplib::_xxx::console_colours::detail::color_if_term (std::ostream &s, const char seq[])
 
std::ostream & quickcpplib::_xxx::console_colours::red (std::ostream &s)
 Makes the text on the console red.
 
std::ostream & quickcpplib::_xxx::console_colours::green (std::ostream &s)
 Makes the text on the console green.
 
std::ostream & quickcpplib::_xxx::console_colours::blue (std::ostream &s)
 Makes the text on the console blue.
 
std::ostream & quickcpplib::_xxx::console_colours::yellow (std::ostream &s)
 Makes the text on the console yellow.
 
std::ostream & quickcpplib::_xxx::console_colours::magenta (std::ostream &s)
 Makes the text on the console magenta.
 
std::ostream & quickcpplib::_xxx::console_colours::cyan (std::ostream &s)
 Makes the text on the console cyan.
 
std::ostream & quickcpplib::_xxx::console_colours::white (std::ostream &s)
 Makes the text on the console white.
 
std::ostream & quickcpplib::_xxx::console_colours::bold (std::ostream &s)
 Makes the text on the console bold.
 
std::ostream & quickcpplib::_xxx::console_colours::normal (std::ostream &s)
 Makes the text on the console non-bold and white.
 

Variables

constexpr const char quickcpplib::_xxx::console_colours::detail::red [] = {0x1b, '[', '3', '1', 'm', 0}
 
constexpr const char quickcpplib::_xxx::console_colours::detail::green [] = {0x1b, '[', '3', '2', 'm', 0}
 
constexpr const char quickcpplib::_xxx::console_colours::detail::blue [] = {0x1b, '[', '3', '4', 'm', 0}
 
constexpr const char quickcpplib::_xxx::console_colours::detail::yellow [] = {0x1b, '[', '3', '3', 'm', 0}
 
constexpr const char quickcpplib::_xxx::console_colours::detail::magenta [] = {0x1b, '[', '3', '5', 'm', 0}
 
constexpr const char quickcpplib::_xxx::console_colours::detail::cyan [] = {0x1b, '[', '3', '6', 'm', 0}
 
constexpr const char quickcpplib::_xxx::console_colours::detail::white [] = {0x1b, '[', '3', '7', 'm', 0}
 
constexpr const char quickcpplib::_xxx::console_colours::detail::bold [] = {0x1b, '[', '1', 'm', 0}
 
constexpr const char quickcpplib::_xxx::console_colours::detail::normal [] = {0x1b, '[', '0', 'm', 0}