-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmonkey-preview.js
More file actions
36 lines (34 loc) 路 1.32 KB
/
Copy pathmonkey-preview.js
File metadata and controls
36 lines (34 loc) 路 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
const C = {
yellow: '\x1b[38;2;240;183;49m',
green: '\x1b[38;2;107;140;78m',
brown: '\x1b[38;2;160;82;45m',
tan: '\x1b[38;2;210;140;80m',
reset: '\x1b[0m',
bold: '\x1b[1m',
}
const y = s => C.yellow + s + C.reset
const g = s => C.green + s + C.reset
const b = s => C.brown + s + C.reset
const n = s => C.tan + s + C.reset
const art = [
'',
' ' + g(',-') + y('~~~~~~~') + g('-.'),
' ' + g('/') + y(' (-:) ') + g('\\'),
' ' + g('(') + y('_____________') + g(')'),
' ' + g('//') + ' ' + g('\\\\'),
' ' + b('\\') + ' ' + g('//') + ' ' + g('\\\\') + ' ' + b('/'),
' ' + b('\\\\') + ' ' + b('//'),
' ' + b('\\\\') + ' ' + b('(') + n('~~~~~~~~~') + b(')') + ' ' + b('//'),
' ' + b('(') + b('(') + ' ' + n('o') + b(')(') + n('o') + ' ' + b('))'),
' ' + b('(') + n(' ~~~ ') + b(')'),
' ' + b('\\') + n(' \\___/ ') + b('/'),
' ' + b('\\ /'),
' ' + b('(') + n(' ___ ') + b(')'),
' ' + b('(') + n(' ( ) ') + b(')'),
' ' + b('\\_______/'),
' ' + b('| |'),
' ' + b('_/') + ' ' + b('| |') + ' ' + b('\\_'),
' ' + b('( )') + ' ' + b('( )') + ' ' + b('( )'),
'',
]
art.forEach(l => console.log(l))