diff --git a/src/functions/displayLogo.ts b/src/functions/displayLogo.ts index c116b39..d75db1e 100644 --- a/src/functions/displayLogo.ts +++ b/src/functions/displayLogo.ts @@ -1,12 +1,23 @@ +import chalk from "chalk"; + const nillionLogo = ` - _ _ _ _ - _ __ (_) | (_) ___ _ __ -| '_ \\| | | | |/ _ \\| '_ \\ -| | | | | | | | (_) | | | | -|_| |_|_|_|_|\\___/|_| |_| - + @@@@ @@@@@@ @@@@@@ @@@@ + @@@@@@@ @@@@@@ @@@@@@ @@@@@@@ + @@@@@@ @@@@@@ @@@@@@ @@@@@@@ + @@ @@@@@@ @@@@@@ @@ + @@@@@@ @@@@@@ +@@@@@@@@@@@@@@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@ @@@@@@@ @@@@@@@@@@@@@@@@@ +@@@@@@@@@@@@@@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@ @@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@ +@@@@@@@@@@@@@@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@ @@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@ +@@@@@@ @@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@@ @@@@@@ +@@@@@@ @@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@@ @@@@@@ +@@@@@@ @@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@@ @@@@@@ +@@@@@@ @@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@ @@@@@@ @@@@@ @@@@@@ @@@@@@ +@@@@@@ @@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@ @@@@@@@@@@@@@@@@@ @@@@@@ @@@@@@ +@@@@@@ @@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@ @@@@@@@@@@@@@@ @@@@@@ @@@@@@ +@@@@@@ @@@@@ @@@@@ @@@@@@ @@@@@@ @@@@@ @@@@@@@@ @@@@@@ @@@@@@ `; export function displayLogo(): void { - console.log("\x1b[34m%s\x1b[0m", nillionLogo); + console.log(chalk.hex("#0021f5")(nillionLogo)); }