Skip to content

Instantly share code, notes, and snippets.

@zmnv
Created April 15, 2018 04:48
Show Gist options
  • Save zmnv/fedadd32cdce9340647aac93b6ff01cc to your computer and use it in GitHub Desktop.
Save zmnv/fedadd32cdce9340647aac93b6ff01cc to your computer and use it in GitHub Desktop.
/* Original:
┌──────────────────────────────────────────────────────┐
│ _____ _ _ _____ _ 1.0.0 │
│ | _ |___ ___ |_|___ ___| |_ | __| |___ _ _ _ │
│ | __| _| . | | | -_| _| _| | __| | . | | | | │
│ |__| |_| |___|_| |___|___|_| |__| |_|___|_____| │
│ |___| │
│ │
│ © Valeriy Zimnev (@zmnv), 2018 │
└──────────────────────────────────────────────────────┘
*/
const c = require('./_colorizer');
const message = `
${c(' Hello, user!', 93)} ${c('Thanks for install:', 92)}
${c('┌──────────────────────────────────────────────────────┐', 90)}
${c('│', 90)} ${c(' _____ _ _ ', 91)} ${c(' _____ _ ', 94)} ${c('1.0.0', 90)} ${c('│', 90)}
${c('│', 90)} ${c('│ _ │___ ___ │_│___ ___│ │_ ', 91)} ${c('│ __| │___ _ _ _ ', 94)} ${c('│', 90)}
${c('│', 90)} ${c('│ __│ _│ . │ │ │ -_| _│ _│', 91)} ${c('│ __| │ . │ │ │ │', 94)} ${c('│', 90)}
${c('│', 90)} ${c('│__│ │_│ │___│_│ │___|___│_│ ', 91)} ${c('│__│ │_│___│_____│', 94)} ${c('│', 90)}
${c('│', 90)} ${c(' |___│ ', 91)} ${c(' ', 94)} ${c('│', 90)}
${c('│', 90)} ${c('│', 90)}
${c('│', 90)} ${c('© Valeriy Zimnev (@zmnv), 2018', 90)} ${c('│', 90)}
${c('└──────────────────────────────────────────────────────┘', 90)}
`;
console.log(message);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment