Darwin  1.0
Event loop based prototype framework
colours.h
Go to the documentation of this file.
1 #ifndef DARWIN_COLOURS_H
2 #define DARWIN_COLOURS_H
3 [[ maybe_unused ]]
4 static const char * green = "\x1B[32m",
5  * red = "\x1B[31m",
6  * orange = "\x1B[33m",
7  * bold = "\x1B[1m",
8  * normal = "\x1B[22m",
9  * highlight = "\x1B[3m",
10  * underline = "\x1B[4m",
11  * def = "\x1B[0m";
12 #endif
def
static const char * def
Definition: colours.h:11
red
static const char * red
Definition: colours.h:5
highlight
static const char * highlight
Definition: colours.h:9
orange
static const char * orange
Definition: colours.h:6
underline
static const char * underline
Definition: colours.h:10
bold
static const char * bold
Definition: colours.h:7
green
static const char * green
Definition: colours.h:4
normal
static const char * normal
Definition: colours.h:8