{"id":19299657,"url":"https://github.com/jeff-hykin/vibrance","last_synced_at":"2026-04-09T16:09:52.549Z","repository":{"id":57392085,"uuid":"437670891","full_name":"jeff-hykin/vibrance","owner":"jeff-hykin","description":"💾 📦 ✅ ","archived":false,"fork":false,"pushed_at":"2022-03-25T17:56:48.000Z","size":3294,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-23T02:36:10.586Z","etag":null,"topics":["browser","color","colors","console","deno","javascript","nodejs"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jeff-hykin.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-12-12T22:30:05.000Z","updated_at":"2023-08-25T16:47:09.000Z","dependencies_parsed_at":"2022-09-26T17:00:22.966Z","dependency_job_id":null,"html_url":"https://github.com/jeff-hykin/vibrance","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeff-hykin%2Fvibrance","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeff-hykin%2Fvibrance/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeff-hykin%2Fvibrance/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeff-hykin%2Fvibrance/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jeff-hykin","download_url":"https://codeload.github.com/jeff-hykin/vibrance/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240400886,"owners_count":19795441,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["browser","color","colors","console","deno","javascript","nodejs"],"created_at":"2024-11-09T23:12:19.250Z","updated_at":"2026-04-09T16:09:52.515Z","avatar_url":"https://github.com/jeff-hykin.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vibrance\n\nA CLI colorizing tool, use it in Deno, Node.js or the browser console (no npm install required!) \u003cbr\u003e\nBuilt as a fork off of Chalk.js\n\n#### Browser or Deno\n```js\nconst { console, vibrance } = (await import('https://cdn.skypack.dev/vibrance@v0.1.35')).default\n\nconsole.red(\"Howdy!\") // has console.log() and all the other methods (debug/warn/error/group/etc)\nconsole.blue.underline(\"Howdy!\") \nconsole.green.bgBlack(\"Howdy!\")\n// NOTE!: this doesnt work: console.green(\"Hello\").blue(\" world\")\n// alternative way\nvibrance.blue(\"Howdy! \").green(\"this will be logged\").log() // NOTE: needs log at the end!\n\n// a dont-import-console way of using vibrancy\nconsole.log(vibrance.blue(\"This will \").bold.magenta(\"also\").blue(\" be logged\"))\n```\n\n#### Node.js\n\n`npm install vibrance`\n\n```js\nconst { console, vibrance } = require(\"vibrance\")\n\nconsole.red(\"Howdy!\")\nconsole.blue.underline(\"Howdy!\")\nconsole.green.bgBlack(\"Howdy!\")\n```\n\n\n## Demo\n\n### Deno.js console\n\u003cimg width=\"1347\" alt=\"Screen Shot 2021-12-12 at 8 43 35 PM\" src=\"https://user-images.githubusercontent.com/17692058/145744706-0b44e0fb-17ec-4a35-978e-9ff46923a96c.png\"\u003e\n\n### Firefox console\n\u003cimg width=\"788\" alt=\"Screen Shot 2021-12-12 at 8 46 48 PM\" src=\"https://user-images.githubusercontent.com/17692058/145744606-723e3c74-1f7c-4daa-8f00-04f725241465.png\"\u003e\n\n\n\n## API\n\n- All the methods can be chained\n- All work on both `console` and `vibrance`\n\n```js\n// colors\nvibrance.black(\"Howdy!\")\nvibrance.red(\"Howdy!\")\nvibrance.green(\"Howdy!\")\nvibrance.yellow(\"Howdy!\")\nvibrance.blue(\"Howdy!\")\nvibrance.magenta(\"Howdy!\")\nvibrance.cyan(\"Howdy!\")\nvibrance.white(\"Howdy!\")\nvibrance.blackBright(\"Howdy!\")\nvibrance.gray(\"Howdy!\")\nvibrance.grey(\"Howdy!\")\nvibrance.redBright(\"Howdy!\")\nvibrance.greenBright(\"Howdy!\")\nvibrance.yellowBright(\"Howdy!\")\nvibrance.blueBright(\"Howdy!\")\nvibrance.magentaBright(\"Howdy!\")\nvibrance.cyanBright(\"Howdy!\")\nvibrance.whiteBright(\"Howdy!\")\n// background colors\nvibrance.bgBlack(\"Howdy!\")\nvibrance.bgRed(\"Howdy!\")\nvibrance.bgGreen(\"Howdy!\")\nvibrance.bgYellow(\"Howdy!\")\nvibrance.bgBlue(\"Howdy!\")\nvibrance.bgMagenta(\"Howdy!\")\nvibrance.bgCyan(\"Howdy!\")\nvibrance.bgWhite(\"Howdy!\")\nvibrance.bgBlackBright(\"Howdy!\")\nvibrance.bgGray(\"Howdy!\")\nvibrance.bgGrey(\"Howdy!\")\nvibrance.bgRedBright(\"Howdy!\")\nvibrance.bgGreenBright(\"Howdy!\")\nvibrance.bgYellowBright(\"Howdy!\")\nvibrance.bgBlueBright(\"Howdy!\")\nvibrance.bgMagentaBright(\"Howdy!\")\nvibrance.bgCyanBright(\"Howdy!\")\nvibrance.bgWhiteBright(\"Howdy!\")\n// specials\nvibrance.reset()\nvibrance.bold()\nvibrance.dim()\nvibrance.italic()\nvibrance.underline()\nvibrance.inverse()\nvibrance.hidden()\nvibrance.strikethrough()\nvibrance.visible()\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjeff-hykin%2Fvibrance","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjeff-hykin%2Fvibrance","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjeff-hykin%2Fvibrance/lists"}