libmya 0.1.0
Library to parse Mya language.
Loading...
Searching...
No Matches
colors.h
Go to the documentation of this file.
1#pragma once
2
3#ifdef TCOLORS
4# define C_NORMAL "\x1b[0m"
5# define C_BLACK "\x1b[30;1m"
6# define C_RED "\x1b[31;1m"
7# define C_GREEN "\x1b[32;1m"
8# define C_YELLOW "\x1b[33;1m"
9# define C_BLUE "\x1b[34;1m"
10# define C_MAGENTA "\x1b[35;1m"
11# define C_CYAN "\x1b[36;1m"
12# define C_WHITE "\x1b[37;1m"
13#else
14# define C_NORMAL
15# define C_BLACK
16# define C_RED
17# define C_GREEN
18# define C_YELLOW
19# define C_BLUE
20# define C_MAGENTA
21# define C_CYAN
22# define C_WHITE
23#endif