-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolorful-logo.js
15 lines (12 loc) · 1.1 KB
/
colorful-logo.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
const gradient = require('gradient-string');
logo = [" /$$$$$$$ /$$ /$$$$$$ /$$$$$$ /$$ ",
" | $$__ $$ | $$ /$$__ $$ /$$__ $$| $$ ",
" | $$ \\ $$ /$$$$$$ /$$$$$$$ /$$$$$$$ /$$$$$$$| $$$$$$$ /$$ /$$| $$ \\__/| $$ \\__/| $$ /$$$$$$ ",
" | $$ | $$ /$$__ $$ /$$_____/ /$$_____/ /$$_____/| $$__ $$| $$ | $$| $$$$ | $$$$ | $$ /$$__ $$",
" | $$ | $$| $$ \\ $$| $$ | $$$$$$ | $$$$$$ | $$ \\ $$| $$ | $$| $$_/ | $$_/ | $$| $$$$$$$$",
" | $$ | $$| $$ | $$| $$ \\____ $$ \\____ $$| $$ | $$| $$ | $$| $$ | $$ | $$| $$_____/",
" | $$$$$$$/| $$$$$$/| $$$$$$$ /$$$$$$$/ /$$$$$$$/| $$ | $$| $$$$$$/| $$ | $$ | $$| $$$$$$$",
" |_______/ \\______/ \\_______/|_______/ |_______/ |__/ |__/ \\______/ |__/ |__/ |__/ \\_______/"]
for (var i = 0; i< 9; i++) {
console.log(gradient.atlas.multiline(logo[i]))
}