Skip to content

Commit

Permalink
True colors for logo (#1567)
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinTail authored Feb 19, 2024
1 parent 7b1901d commit 94dcf39
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/startup-logo.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export const getStartupLogo = () =>
`\n\u001B[94m8888888888 8888888888P 888 d8888 8888888b. 8888888 \u001B[39m\n\u001B[94m888 d88P 888 d88888 888 Y88b 888\u001B[39m\n\u001B[95m888 d88P 888 d88P888 888 888 888\u001B[39m\n\u001B[95m8888888 888 888 88888b. 888d888 .d88b. .d8888b .d8888b d88P .d88b. .d88888 d88P 888 888 d88P 888\u001B[39m\n\u001B[97m888 \u1FEFY8bd8P' 888 "88b 888P" d8P Y8b 88K 88K d88P d88""88b d88" 888 d88P 888 8888888P" 888 \u001B[39m\n\u001B[97m888 X88K 888 888 888 88888888 "Y8888b. "Y8888b. d88P 888 888 888 888 d88P 888 888 888\u001B[39m\n\u001B[95m888 .d8""8b. 888 d88P 888 Y8b. X88 X88 d88P Y88..88P Y88b 888 d8888888888 888 888\u001B[39m\n\u001B[95m8888888888 888 888 88888P" 888 "Y8888 88888P' 88888P' d8888888888 "Y88P" "Y88888 d88P 888 888 8888888\u001B[39m\n\u001B[94m 888\u001B[39m\n\u001B[94m 888\u001B[3m Proudly supports transgender community.\u001B[23m\u001B[39m\n\u001B[94m\u001B[3mfor Nina \u001B[23m888\u001B[3m Start your API server with I/O schema validation and custom middlewares in minutes.\u001B[23m\u001B[39m\n\u001B[90m\u001B[3m Thank you for choosing Express Zod API for your project.\u001B[23m\u001B[39m\n`;
`\n\u001B[38;2;91;206;250m8888888888 8888888888P 888 d8888 8888888b. 8888888 \u001B[39m\n\u001B[38;2;91;206;250m888 d88P 888 d88888 888 Y88b 888\u001B[39m\n\u001B[38;2;245;169;184m888 d88P 888 d88P888 888 888 888\u001B[39m\n\u001B[38;2;245;169;184m8888888 888 888 88888b. 888d888 .d88b. .d8888b .d8888b d88P .d88b. .d88888 d88P 888 888 d88P 888\u001B[39m\n\u001B[38;2;255;255;255m888 \u1FEFY8bd8P' 888 "88b 888P" d8P Y8b 88K 88K d88P d88""88b d88" 888 d88P 888 8888888P" 888 \u001B[39m\n\u001B[38;2;255;255;255m888 X88K 888 888 888 88888888 "Y8888b. "Y8888b. d88P 888 888 888 888 d88P 888 888 888\u001B[39m\n\u001B[38;2;245;169;184m888 .d8""8b. 888 d88P 888 Y8b. X88 X88 d88P Y88..88P Y88b 888 d8888888888 888 888\u001B[39m\n\u001B[38;2;245;169;184m8888888888 888 888 88888P" 888 "Y8888 88888P' 88888P' d8888888888 "Y88P" "Y88888 d88P 888 888 8888888\u001B[39m\n\u001B[38;2;91;206;250m 888\u001B[39m\n\u001B[38;2;91;206;250m 888\u001B[3m Proudly supports transgender community.\u001B[23m\u001B[39m\n\u001B[38;2;91;206;250m\u001B[3mfor Nina \u001B[23m888\u001B[3m Start your API server with I/O schema validation and custom middlewares in minutes.\u001B[23m\u001B[39m\n\u001B[90m\u001B[3m Thank you for choosing Express Zod API for your project.\u001B[23m\u001B[39m\n`;
14 changes: 9 additions & 5 deletions tools/startup-logo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,16 @@ const thanks = chalk.italic(
);
const dedicationMessage = chalk.italic("for Nina".padEnd(20));

const pink = chalk.hex("#F5A9B8");
const blue = chalk.hex("#5BCEFA");
const white = chalk.hex("#FFF");

const colors = new Array<ChalkInstance>(14)
.fill(chalk.blueBright, 1, 3)
.fill(chalk.magentaBright, 3, 5)
.fill(chalk.whiteBright, 5, 7)
.fill(chalk.magentaBright, 7, 9)
.fill(chalk.blueBright, 9, 12)
.fill(blue, 1, 3)
.fill(pink, 3, 5)
.fill(white, 5, 7)
.fill(pink, 7, 9)
.fill(blue, 9, 12)
.fill(chalk.grey, 12, 13);

const logo = `
Expand Down

0 comments on commit 94dcf39

Please sign in to comment.