mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-08 19:21:33 -07:00
17 lines
714 B
JavaScript
17 lines
714 B
JavaScript
const chalk = require("chalk");
|
|
|
|
const themeColor = chalk.hex("#2068ba");
|
|
|
|
|
|
console.log(themeColor(" ____ __ _ "));
|
|
console.log(themeColor(" / _/_______ _____/ /_ _____(_)___ ___ ____ "));
|
|
console.log(themeColor(" / // ___/ _ \\/ ___/ __ \\/ ___/ / __ `__ \\/ __ \\"));
|
|
console.log(themeColor(" _/ // /__/ __(__ ) / / / / / / / / / / / /_/ /"));
|
|
console.log(themeColor("/___/\\___/\\___/____/_/ /_/_/ /_/_/ /_/ /_/ .___/ "));
|
|
console.log(themeColor(" /_/ "));
|
|
|
|
console.log(" Currently building Iceshrimp!");
|
|
console.log(
|
|
chalk.rgb(255, 136, 0)(" Hang on for a moment, as this may take a while."),
|
|
);
|
|
console.log("");
|