JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1586
  • Score
    100M100P100Q109342F
  • License ISC

Preferred colors for @buzuli's projects

Package Exports

  • @buzuli/color

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@buzuli/color) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

color

Useful colors for my (@buzuli) personal projects.

Installation

npm install @buzuli/color

Usage

Preferred color functions are available.

const {
  red, yellow, blue,
  orange, green, purple,
  gray
} = require('@buzuli/color')

console.log(red('rojo'))
console.log(orange('naraja'))
console.log(yellow('amarillo'))
console.log(green('verde'))
console.log(blue('azul'))
console.log(purple('pΓΊrpura'))
console.log(gray('gris'))

Custom colors by hex value or keyword.

const {hex, key} = require('@buzuli/color')

console.log(key('orange')('My favorite color'))
console.log(hex('abc')('Surprise me.'))

One more thing: Emoji 🐿

const {
  green, yellow, orange, gray, emoji
} = require('@buzuli/color')

console.log(green(emoji.inject('β˜”  spring 🌷')))
console.log(yellow(emoji.inject('🌴  summer β˜€οΈ')))
console.log(orange(emoji.inject('πŸŽƒ   fall  πŸ‚')))
console.log(gray(emoji.inject('β›„  winter ❄️')))