0.0.5 • Published 5 months ago

consolestylerc v0.0.5

Weekly downloads
31
License
GPL-3.0-or-later
Repository
github
Last release
5 months ago

console style rc

Simple cli styler

init

const styler = new (require('consolestylerc').base();

simple foreground color change

styler.style(
    'test red text',
    {
         'color':'red'
    }
);

simple foreground color change

styler.style(
    'test text with blue background',
    {
         'background':'blue'
    }
);

simple effect

styler.style(
    'blinking  test text',
    {
         'effect':'blink'
    }
);

simple multiple style

styler.style(
    'styled test text',
    {
         'color':'cyan',
         'background':'cyan',
         'effect':[
            'blink',
            'underline'
         ]
    }
);

supported styles

styleTypes
boldeffect
dimeffect
italiceffect
underlineeffect
blinkeffect
inverseeffect
hiddeneffect
strikethrougheffect
blackcolor,background
redcolor,background
greencolor,background
yellowcolor,background
bluecolor,background
cyancolor,background
whitecolor,background
greycolor
0.0.5

5 months ago

0.0.4-r1

3 years ago

0.0.4

3 years ago

0.0.2-rc1

3 years ago

0.0.2-rc2

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago