cli-training
Version:
get to know amir with `npx amir`
20 lines (13 loc) • 683 B
JavaScript
import chalk from 'chalk';
const dim = chalk.dim;
const twitterClr = chalk.hex(`#79c0ff`).bold.inverse;
const githubClr = chalk.hex(`#79c0ff`).bold.inverse;
const mySiteClr = chalk.hex(`#f08804`).bold.inverse;
const bioClr = chalk.bgGreenBright.blueBright;
const adClr = chalk.rgb(122, 0, 0);
const bio = ` ${bioClr('My Bio: programmer, writing a book')}\n `;
const social = ` ${githubClr(` GitHub `)} ${dim(`https://github.com/`)}
${twitterClr(` Twitter `)} ${dim(`https://x.com/`)}
${mySiteClr(` WebSite `)} ${dim(`https://capabledev.dev`)}`;
const ad = `Check out My Website ${adClr('https://capabledev.dev')} `;
export default { social, bio, ad };