rittenhop-dev/versions/5.94.2/node_modules/@tryghost/pretty-cli/lib/styles.js
2024-09-23 19:40:12 -04:00

22 lines
655 B
JavaScript

const chalk = require('chalk');
module.exports = {
// Usage: script [options] etc
usagePrefix: (str) => {
return chalk.yellow(str.slice(0, 6)) + '\n ' + str.slice(7);
},
// Options: Arguments: etc
group: str => chalk.yellow(str),
// --help etc
flags: str => chalk.green(str),
// [required] [boolean] etc
hints: str => chalk.dim(str),
// Use different style when a type is invalid
groupError: str => chalk.red(str),
flagsError: str => chalk.red(str),
descError: str => chalk.yellow(str),
hintsError: str => chalk.red(str),
// style error messages
messages: str => chalk.red(str)
};