UNPKG

nuxi

Version:
19 lines (18 loc) 546 B
//#region src/utils/ascii.ts /** * Thank you to IndyJoenz for this ASCII art * https://bsky.app/profile/durdraw.org/post/3liadod3gv22a */ const themeColor = "\x1B[38;2;0;220;130m"; const nuxtIcon = [ ` .d$b.`, ` i$$A$$L .d$b`, ` .$$F\` \`$$L.$$A$$.`, ` j$$' \`4$$:\` \`$$.`, ` j$$' .4$: \`$$.`, ` j$$\` .$$: \`4$L`, ` :$$:____.d$$: _____.:$$:`, ` \`4$$$$$$$$P\` .i$$$$$$$$P\`` ].map((line) => line.split("").join(themeColor)).join("\n"); //#endregion export { themeColor as n, nuxtIcon as t };