Lines Matching +full:m +full:- +full:tech
12 …-ci.org/chalk/chalk.svg?branch=master)](https://travis-ci.org/chalk/chalk) [
70 - Auto-detects color support
71 - Doesn't extend `String.prototype`
72 - Clean and focused
73 - Actively maintained
74 - [Used by ~50,000 packages](https://www.npmjs.com/browse/depended/chalk) as of January 1, 2020
178 | :---: | :--- |
186 Detect whether the terminal [supports color](https://github.com/chalk/supports-color). Used interna…
188 Can be overridden by the user with the flags `--color` and `--no-color`. For situations where using…
190 Explicit 256/Truecolor mode can be enabled using the `--color=256` and `--color=16m` flags, respect…
200 - `reset` - Resets the current color chain.
201 - `bold` - Make text bold.
202 - `dim` - Emitting only a small amount of light.
203 - `italic` - Make text italic. *(Not widely supported)*
204 - `underline` - Make text underline. *(Not widely supported)*
205 - `inverse`- Inverse background and foreground colors.
206 - `hidden` - Prints the text, but makes it invisible.
207 - `strikethrough` - Puts a horizontal line through the center of the text. *(Not widely supported)*
208 - `visible`- Prints the text only when Chalk has a color level > 0. Can be useful for things that a…
212 - `black`
213 - `red`
214 - `green`
215 - `yellow`
216 - `blue`
217 - `magenta`
218 - `cyan`
219 - `white`
220 - `blackBright` (alias: `gray`, `grey`)
221 - `redBright`
222 - `greenBright`
223 - `yellowBright`
224 - `blueBright`
225 - `magentaBright`
226 - `cyanBright`
227 - `whiteBright`
231 - `bgBlack`
232 - `bgRed`
233 - `bgGreen`
234 - `bgYellow`
235 - `bgBlue`
236 - `bgMagenta`
237 - `bgCyan`
238 - `bgWhite`
239 - `bgBlackBright` (alias: `bgGray`, `bgGrey`)
240 - `bgRedBright`
241 - `bgGreenBright`
242 - `bgYellowBright`
243 - `bgBlueBright`
244 - `bgMagentaBright`
245 - `bgCyanBright`
246 - `bgWhiteBright`
250 …ed template literal](https://exploringjs.com/es6/ch_template-literals.html#_tagged-template-litera…
286 - `chalk.hex('#DEADED').underline('Hello, world!')`
287 - `chalk.keyword('orange')('Some orange text')`
288 - `chalk.rgb(15, 100, 204).inverse('Hello!')`
292 - `chalk.bgHex('#DEADED').underline('Hello, world!')`
293 - `chalk.bgKeyword('orange')('Some orange text')`
294 - `chalk.bgRgb(15, 100, 204).inverse('Hello!')`
298 - [`rgb`](https://en.wikipedia.org/wiki/RGB_color_model) - Example: `chalk.rgb(255, 136, 0).bold('O…
299 - [`hex`](https://en.wikipedia.org/wiki/Web_colors#Hex_triplet) - Example: `chalk.hex('#FF8800').bo…
300 - [`keyword`](https://www.w3.org/wiki/CSS/Properties/color/keywords) (CSS keywords) - Example: `cha…
301 - [`hsl`](https://en.wikipedia.org/wiki/HSL_and_HSV) - Example: `chalk.hsl(32, 100, 50).bold('Orang…
302 - [`hsv`](https://en.wikipedia.org/wiki/HSL_and_HSV) - Example: `chalk.hsv(32, 100, 100).bold('Oran…
303 - [`hwb`](https://en.wikipedia.org/wiki/HWB_color_model) - Example: `chalk.hwb(32, 0, 50).bold('Ora…
304 - [`ansi`](https://en.wikipedia.org/wiki/ANSI_escape_code#3/4_bit) - Example: `chalk.ansi(31).bgAns…
305 - [`ansi256`](https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit) - Example: `chalk.bgAnsi256(194…
319 … you use. [Learn more.](https://tidelift.com/subscription/pkg/npm-chalk?utm_source=npm-chalk&utm_m…
323 - [chalk-cli](https://github.com/chalk/chalk-cli) - CLI for this module
324 - [ansi-styles](https://github.com/chalk/ansi-styles) - ANSI escape codes for styling strings in th…
325 - [supports-color](https://github.com/chalk/supports-color) - Detect whether a terminal supports co…
326 - [strip-ansi](https://github.com/chalk/strip-ansi) - Strip ANSI escape codes
327 - [strip-ansi-stream](https://github.com/chalk/strip-ansi-stream) - Strip ANSI escape codes from a …
328 - [has-ansi](https://github.com/chalk/has-ansi) - Check if a string has ANSI escape codes
329 - [ansi-regex](https://github.com/chalk/ansi-regex) - Regular expression for matching ANSI escape c…
330 - [wrap-ansi](https://github.com/chalk/wrap-ansi) - Wordwrap a string with ANSI escape codes
331 - [slice-ansi](https://github.com/chalk/slice-ansi) - Slice a string with ANSI escape codes
332 - [color-convert](https://github.com/qix-/color-convert) - Converts colors between different models
333 - [chalk-animation](https://github.com/bokub/chalk-animation) - Animate strings in the terminal
334 - [gradient-string](https://github.com/bokub/gradient-string) - Apply color gradients to strings
335 - [chalk-pipe](https://github.com/LitoMore/chalk-pipe) - Create chalk style schemes with simpler st…
336 - [terminal-link](https://github.com/sindresorhus/terminal-link) - Create clickable links in the te…
340 - [Sindre Sorhus](https://github.com/sindresorhus)
341 - [Josh Junon](https://github.com/qix-)