@buzuli/color
Advanced tools
Comparing version 2.0.0 to 2.1.0
@@ -5,8 +5,7 @@ | ||
orange, green, purple, | ||
gray, hex, key, | ||
gray, black, white, | ||
hex, key, | ||
emoji, pool | ||
} = require('./lib/color') | ||
const black = hex('000') | ||
console.log(red('rojo')) | ||
@@ -27,2 +26,4 @@ console.log(orange('naraja')) | ||
console.log(gray.bg(black('gris'))) | ||
console.log(white.bg(black('blanco'))) | ||
console.log(black.bg(white('negro'))) | ||
@@ -29,0 +30,0 @@ console.log(key('orange').bold('My favorite color')) |
@@ -24,2 +24,4 @@ const chalk = require('chalk') | ||
const grey = hex(codeGrey) | ||
const black = hex('000') | ||
const white = hex('fff') | ||
@@ -35,2 +37,4 @@ module.exports = { | ||
grey, | ||
black, | ||
white, | ||
key, | ||
@@ -37,0 +41,0 @@ hex, |
{ | ||
"name": "@buzuli/color", | ||
"version": "2.0.0", | ||
"version": "2.1.0", | ||
"description": "Preferred colors for @buzuli's projects", | ||
@@ -5,0 +5,0 @@ "main": "lib/color.js", |
8239
191