Searched refs:Chalk (Results 1 – 3 of 3) sorted by relevance
| /plugin/asciidocjs/node_modules/chalk/ |
| D | index.d.ts | 97 type Instance = new (options?: Options) => Chalk; 153 interface Chalk extends ChalkFunction { interface 184 hex(color: string): Chalk; 198 keyword(color: string): Chalk; 203 rgb(red: number, green: number, blue: number): Chalk; 208 hsl(hue: number, saturation: number, lightness: number): Chalk; 213 hsv(hue: number, saturation: number, value: number): Chalk; 218 hwb(hue: number, whiteness: number, blackness: number): Chalk; 226 ansi(code: number): Chalk; 231 ansi256(index: number): Chalk; [all …]
|
| D | readme.md | 4 <img width="320" src="media/logo.svg" alt="Chalk"> 90 Chalk comes with an easy to use composable API where you just chain and nest the styles you want. 169 …ty. You should however only do this in your own code as it applies globally to all Chalk consumers. 208 - `visible`- Prints the text only when Chalk has a color level > 0. Can be useful for things that a… 250 Chalk can be used as a [tagged template literal](https://exploringjs.com/es6/ch_template-literals.h… 266 Template styles are chained exactly like normal Chalk styles. The following three statements are eq… 280 Chalk supports 256 colors and [Truecolor](https://gist.github.com/XVilka/8346728) (16 million color… 282 …y the terminal emulator (or by specifying `{level: n}` as a Chalk option). For example, Chalk conf… 313 …Although there are other packages, they either do too much or not enough. Chalk is a clean and foc…
|
| /plugin/asciidocjs/node_modules/chalk/source/ |
| D | index.js | 44 Object.setPrototypeOf(chalk, Chalk.prototype); 56 function Chalk(options) { class 222 Object.defineProperties(Chalk.prototype, styles); 224 const chalk = Chalk(); // eslint-disable-line new-cap 226 chalk.stderr = Chalk({level: stderrColor ? stderrColor.level : 0}); // eslint-disable-line new-cap
|