chalk-color-style-quiz v0.1.4
Chalk Color Style Quiz
Color Style Quiz For Chalk Chalk Quiz Color Style is a color style quiz for chalk
Install
npm install chalk-color-style-quizInstall Chalk 4
npm install chalk@4.1.1Usage
var chalkcolorquiz = require('chalk-color-style-quiz');
chalkcolorquiz.completed();Chalk Quiz Color Style comes with an easy to use color style quiz API
Custom text console.log
var chalkcolorquiz = require('chalk-color-style-quiz');
chalkcolorquiz.log(`
${chalkcolorquiz.blankdone()} Creating new html file done
`);or this
var chalkcolorquiz = require('chalk-color-style-quiz');
chalkcolorquiz.log(`
${chalkcolorquiz.blankdone()}
${chalkcolorquiz.hex('#0f0')('Creating new html file done')}
`);or this to install chalk
var chalk = require('chalk');
var chalkcolorquiz = require('chalk-color-style-quiz');
chalkcolorquiz.log(`
${chalkcolorquiz.blankdone()}
${chalk.hex('#0f0')('Creating new html file done')}
`);API
chalkcolorquiz.<style>()
chalkcolorquiz.completed
Specifies the completed color for color support
chalkcolorquiz.failed
Specifies the failed color for color support
chalkcolorquiz.textcompleted
Specifies the completed color for color support
chalkcolorquiz.textfailed
Specifies the failed color for color support
chalkcolorquiz.blankcompleted
Specifies the blank completed color for color support
chalkcolorquiz.blankfailed
Specifies the blank failed color for color support
chalkcolorquiz.blanktextcompleted
Specifies the blank completed text color for color support
chalkcolorquiz.blanktextfailed
Specifies the blank failed text color for color support
chalkcolorquiz.log
Specifies the custom console.log for console of color support
Text Colors And Format Styles
Text Format
bold- Make the text bold.dim- Make the text have lower opacity.underline- Put a horizontal line below the text.inverse- Invert background and foreground colors.
Text Colors
whiteblackgrayredbluegreenyellowmagentacyanwhitebrightblackbright(alias:gray,grey)graybrightredbrightgreenbrightbluebrightyellowbrightmagentabrightcyanbright
Text Background colors
bgwhitebgblackbggraybgredbgbluebggreenbgyellowbgmagentabgcyanbgwhitebrightbgblackbright(alias:bggray,bggrey)bggraybrightbgredbrightbgbluebrightbggreenbrightbgyellowbrightbgmagentabrightbgcyanbright
Hex And Rgb Colors
Chalk Color Style supports hex and rgb colors Examples:
chalkcolor.hex('#0000a5').bold('Hello world!')chalkcolor.rgb(0, 0, 165).underline('Hello world!')
Background versions of these models are prefixed with bg and the first level of the module capitalized (e.g. hex for foreground colors and bghex for background colors).
chalkcolor.bghex('#0000a5').bold('Hello world!')chalkcolor.bgrgb(0, 0, 165).underline('Hello world!')
The following color models can be used: