@sharksv/hyper
Version:
A CLI to bootstrap new projects!
19 lines (18 loc) • 439 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const chalk = require("chalk");
const Clrs = {
dim: chalk.dim,
// Clrs
red: chalk.red,
gray: chalk.gray,
cyan: chalk.cyan,
green: chalk.green,
yellow: chalk.yellow,
// Bgs
bgRed: chalk.inverse.red,
bgCyan: chalk.inverse.cyan,
bgGreen: chalk.inverse.green,
bgYellow: chalk.inverse.yellow
};
exports.default = Clrs;