File tree Expand file tree Collapse file tree 1 file changed +14
-9
lines changed Expand file tree Collapse file tree 1 file changed +14
-9
lines changed Original file line number Diff line number Diff line change 13
13
using namespace std ::string_view_literals;
14
14
15
15
constexpr auto LOGO_RAW = R"(
16
- ########\ ##\
17
- ## _____| ## |
18
- ## | #######\ #######\ ######\ #######\ ######\
19
- #####\ ## _____|## _____| \____##\ ## _____|\_## _|
20
- ## __| ## / \######\ ####### |## / ## |
21
- ## | ## | \____##\ ## __## |## | ## |##\
22
- ########\\#######\ ####### |\####### |\#######\ \#### |
23
- \________|\_______|\_______/ \_______| \_______| \____/
16
+ /##########\
17
+ #### #/ \##\
18
+ ###### \##\
19
+ #### ##\ \# |@@@@
20
+ \##\ #### @@@@@@@@@
21
+ @@@@@@@@@@@@@@@ ###### @@@@@@@@@@@@@@
22
+ #### @@@@@@@@@
23
+ /# |@@@@
24
+ #### /####/
25
+ ###### ####/
26
+ ####
24
27
)" sv;
25
28
26
29
constexpr auto USAGE = R"( Ecsact SDK Command Line
@@ -43,7 +46,9 @@ std::string colorize_logo() {
43
46
if (c == ' \\ ' || c == ' |' || c == ' _' || c == ' /' ) {
44
47
color = " \x1B [90m" ;
45
48
} else if (c == ' #' ) {
46
- color = " \x1B [36m" ;
49
+ color = " \033 [36;1m" ;
50
+ } else if (c == ' @' ) {
51
+ color = " \033 [0m\033 [38;5;214m" ;
47
52
}
48
53
49
54
if (!color.empty () && color != curr_color) {
You can’t perform that action at this time.
0 commit comments