| 105 | ]; |
| 106 | |
| 107 | const friendlyWelcome = () => { |
| 108 | // p5.js brand - magenta: #ED225D |
| 109 | //const astrixBgColor = 'transparent'; |
| 110 | //const astrixTxtColor = '#ED225D'; |
| 111 | //const welcomeBgColor = '#ED225D'; |
| 112 | //const welcomeTextColor = 'white'; |
| 113 | const welcomeMessage = translator('fes.pre', { |
| 114 | message: translator('fes.welcome') |
| 115 | }); |
| 116 | console.log( |
| 117 | ' _ \n' + |
| 118 | ' /\\| |/\\ \n' + |
| 119 | " \\ ` ' / \n" + |
| 120 | ' / , . \\ \n' + |
| 121 | ' \\/|_|\\/ ' + |
| 122 | '\n\n' + |
| 123 | welcomeMessage |
| 124 | ); |
| 125 | }; |
| 126 | |
| 127 | /** |
| 128 | * Takes a message and a p5 function func, and adds a link pointing to |