xtd 0.2.0
console_color.h
Go to the documentation of this file.
1 #pragma once
5 #include "enum.h"
6 
8 namespace xtd {
19  enum class console_color {
21  default_color = -1,
23  black,
25  dark_blue,
27  dark_green,
29  dark_cyan,
31  dark_red,
37  gray,
39  dark_gray,
41  blue,
43  green,
45  cyan,
47  red,
49  magenta,
51  yellow,
53  white
54  };
55 }
56 
58 template<> struct xtd::enum_register<xtd::console_color> {
60 };
The color dark red.
The color dark blue.
The color dark green.
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
std::vector< std::pair< enum_t, xtd::ustring > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition: enum_collection.h:19
The color green.
Contains enum_ and enum_ut_ keywords.
The color cyan (blue-green).
console_color
Specifies constants that define foreground and background colors for the console. ...
Definition: console_color.h:19
The color blue.
The color dark yellow (ochre).
The color dark cyan (dark blue-green).
The color black.
The color dark magenta (dark purplish-red).
The color gray.
The color dark gray.
The color yellow.
The color white.
The color magenta (purplish red).
Provides the registration struct for enumerations.
Definition: enum_register.h:36