styl3
TypeScript icon, indicating that this package has built-in type declarations

1.4.0 • Public • Published

styl3

themeable cli coloring

features

  • built-in themes available
  • built-in decorators (bold, italic, hidden, underline, strikeout and inverted)
  • supports hex, rgb, or ansi color codes
  • supports custom colors
  • easy and flexible api

themes

5 unique built-in themes to get you started on easy cli styling

usage

const style = require('./');
const shellfie = require('shellfie');
const s = style();

(async function () {
  const data = [];
  data.push(s.red`this will be a default red`);
  // access a theme specifically
  data.push(s.pastel.green`this will be a pastel green`);

  const ss = style({ theme: 'pastel' });
  // now `ss.green` points to the pastel green
  // allowing to change theme for the entire cli with one string
  data.push(ss.green`also a pastel green`);

  // supports custom hex
  data.push(ss.hex('#de5285')`this will be a slick pink`);
  // and rgb
  data.push(ss.rgb(15, 106, 251)`this will be a rich blue`);
  await shellfie(data, {
    viewport: { width: 300, height: 300 },
    name: 'themes',
  });
})();

decorators

decorators are characters used to wrap a word and give it decorating features, such as bold, italic, underline, strikeout, inverted and italic.

more than one decorator can be applied to a word

map

{
  bold: '*',
  underline: '!',
  dim: '~',
  hidden: '#',
  invert: '@',
  blink: '^',
  italic: '%',
  strikeout: '$'
}

usage

const style = require('./');
const shellfie = require('shellfie');
const s = style({theme: 'pastel'});

(async function() {
  const data = [];
  // use decorators for bold, underline etc...
  data.push(s.red`lush *BOLD* @RED@`)
  // double decoratros
  data.push(s.cyan`this is !*important*!`)
  data.push(s.green`viva la %italia%`)
  data.push(s.pink`address: ~you@somewhere.earth~`)
  await shellfie(data, {
      viewport: { width: 300, height: 300 },
      name: 'decoratorz',
    });
})()

Package Sidebar

Install

npm i styl3

Weekly Downloads

380

Version

1.4.0

License

MIT

Unpacked Size

9.03 kB

Total Files

4

Last publish

Collaborators

  • tool3