-
Notifications
You must be signed in to change notification settings - Fork 0
/
color.hpp
67 lines (62 loc) · 1.64 KB
/
color.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
//
// Created by imper on 3/17/22.
//
#ifndef PRIVACY_PROTECTION_MESSENGER_COLOR_HPP
#define PRIVACY_PROTECTION_MESSENGER_COLOR_HPP
// reset colors and formatting
#define COLOR_RESET "\033[0m"
// intense color format
#define COLOR_INTENSE "\033[1m"
// faint color format
#define COLOR_FAINT "\033[2m"
// italic format
#define COLOR_ITALIC "\033[3m"
// underlined format
#define COLOR_UNDER "\033[4m"
// blinking text format
#define COLOR_BLINK "\033[5m"
// selected text format
#define COLOR_SELECT "\033[7m"
// invizible text format
#define COLOR_INVIZ "\033[8m"
// strikeout format
#define COLOR_STRIKE "\033[9m"
// foreground color
#define COLOR_BLACK "\033[30m"
// foreground color
#define COLOR_RED "\033[31m"
#define COLOR_SEPAR COLOR_RED
// foreground color
#define COLOR_GREEN "\033[32m"
// foreground color
#define COLOR_YELLOW "\033[33m"
#define COLOR_HERO COLOR_YELOW
// foreground color
#define COLOR_BLUE "\033[34m"
// foreground color
#define COLOR_MAGENTA "\033[35m"
// foreground color
#define COLOR_CYAN "\033[36m"
// foreground color
#define COLOR_WHITE "\033[37m"
// foreground color
#define COLOR_DEFAULT "\033[38m"
// background color
#define COLOR_BLACK_BG "\033[40m"
// background color
#define COLOR_RED_BG "\033[41m"
// background color
#define COLOR_GREEN_BG "\033[42m"
// background color
#define COLOR_YELLOW_BG "\033[43m"
// background color
#define COLOR_BLUE_BG "\033[44m"
// background color
#define COLOR_MAGENTA_BG "\033[45m"
// background color
#define COLOR_CYAN_BG "\033[46m"
// background color
#define COLOR_WHITE_BG "\033[47m"
// background color
#define COLOR_DEFAULT_BG "\033[48m"
#endif //PRIVACY_PROTECTION_MESSENGER_COLOR_HPP