|
1 | 1 | #include "strings.hpp" |
2 | 2 |
|
3 | | -const std::string TH_DIM = "\x1B[38;2;60;60;60m"; |
4 | | -const std::string TH_MED = "\x1B[38;2;120;120;120m"; |
| 3 | +const std::string TH_DIM = "\x1B[38;2;60;60;60m"; |
| 4 | +const std::string TH_MED = "\x1B[38;2;120;120;120m"; |
5 | 5 | const std::string TH_WHITE = "\x1B[38;2;255;255;255m"; |
6 | | -const std::string TH_RST = "\x1B[0m"; |
| 6 | +const std::string TH_RST = "\x1B[0m"; |
7 | 7 |
|
8 | 8 | #if (CLI_WINDOWS) |
9 | 9 | const std::string TH_BRIGHT = "\x1B[38;2;180;180;180m"; |
10 | | -const std::string TH_RED = "\x1B[38;2;220;0;0m"; |
| 10 | +const std::string TH_RED = "\x1B[38;2;220;0;0m"; |
11 | 11 | #endif |
12 | 12 |
|
13 | | -std::string bold = "\x1B[1;97m"; |
14 | | -std::string underline = "\x1B[4m"; |
15 | | -std::string ansi_exit = "\x1B[0m"; |
16 | | -std::string red = "\x1B[31m"; |
17 | | -std::string orange = "\x1B[38;2;180;50;0m"; |
18 | | -std::string green = "\x1B[38;2;60;60;60m"; |
19 | | -std::string red_orange = "\x1B[31m"; |
| 13 | +std::string bold = "\x1B[1;97m"; |
| 14 | +std::string underline = "\x1B[4m"; |
| 15 | +std::string ansi_exit = "\x1B[0m"; |
| 16 | +std::string red = "\x1B[31m"; |
| 17 | +std::string orange = "\x1B[38;2;180;50;0m"; |
| 18 | +std::string green = "\x1B[38;2;60;60;60m"; |
| 19 | +std::string red_orange = "\x1B[31m"; |
20 | 20 | std::string green_orange = "\x1B[38;2;60;60;60m"; |
21 | | -std::string grey = "\x1B[38;2;60;60;60m"; |
22 | | -std::string white = "\x1B[38;2;255;255;255m"; |
| 21 | +std::string grey = "\x1B[38;2;60;60;60m"; |
| 22 | +std::string white = "\x1B[38;2;255;255;255m"; |
23 | 23 |
|
24 | 24 | std::bitset<arg_bits> arg_bitset; |
25 | 25 |
|
26 | 26 | u8 unsupported_count = 0; |
27 | | -u8 supported_count = 0; |
28 | | -u8 no_perms_count = 0; |
29 | | -u8 disabled_count = 0; |
| 27 | +u8 supported_count = 0; |
| 28 | +u8 no_perms_count = 0; |
| 29 | +u8 disabled_count = 0; |
30 | 30 |
|
31 | | -std::string tag_detected = ("\x1B[97m[\x1B[31m DETECTED \x1B[97m]\x1B[0m"); |
| 31 | +std::string tag_detected = ("\x1B[97m[\x1B[31m DETECTED \x1B[97m]\x1B[0m"); |
32 | 32 | std::string tag_not_detected = (" \x1B[97m[\x1B[90mNOT DETECTED\x1B[97m]\x1B[0m"); |
0 commit comments