Skip to content

Commit 4f40e9e

Browse files
committed
chore: update ascii logo
1 parent 4d112ab commit 4f40e9e

File tree

1 file changed

+14
-9
lines changed

1 file changed

+14
-9
lines changed

ecsact_cli.cc

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,17 @@
1313
using namespace std::string_view_literals;
1414

1515
constexpr auto LOGO_RAW = R"(
16-
########\ ##\
17-
## _____| ## |
18-
## | #######\ #######\ ######\ #######\ ######\
19-
#####\ ## _____|## _____| \____##\ ## _____|\_## _|
20-
## __| ## / \######\ ####### |## / ## |
21-
## | ## | \____##\ ## __## |## | ## |##\
22-
########\\#######\ ####### |\####### |\#######\ \#### |
23-
\________|\_______|\_______/ \_______| \_______| \____/
16+
/##########\
17+
#### #/ \##\
18+
###### \##\
19+
#### ##\ \# |@@@@
20+
\##\ #### @@@@@@@@@
21+
@@@@@@@@@@@@@@@ ###### @@@@@@@@@@@@@@
22+
#### @@@@@@@@@
23+
/# |@@@@
24+
#### /####/
25+
###### ####/
26+
####
2427
)"sv;
2528

2629
constexpr auto USAGE = R"(Ecsact SDK Command Line
@@ -43,7 +46,9 @@ std::string colorize_logo() {
4346
if(c == '\\' || c == '|' || c == '_' || c == '/') {
4447
color = "\x1B[90m";
4548
} else if(c == '#') {
46-
color = "\x1B[36m";
49+
color = "\033[36;1m";
50+
} else if(c == '@') {
51+
color = "\033[0m\033[38;5;214m";
4752
}
4853

4954
if(!color.empty() && color != curr_color) {

0 commit comments

Comments
 (0)