{"id":15065317,"url":"https://github.com/mezotv/chalk-advanced","last_synced_at":"2025-06-16T02:37:51.418Z","repository":{"id":63764448,"uuid":"487253873","full_name":"mezotv/chalk-advanced","owner":"mezotv","description":"Chalk-advanced is a library that allows you to color your console output.","archived":false,"fork":false,"pushed_at":"2023-08-22T22:57:41.000Z","size":15,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-19T08:49:28.494Z","etag":null,"topics":["chalk","chalk-advanced","chalkjs","nodejs","npm-module","npm-package","npmjs"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/chalk-advanced","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mezotv.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-04-30T11:00:49.000Z","updated_at":"2023-12-14T08:01:28.000Z","dependencies_parsed_at":"2024-06-21T04:16:48.413Z","dependency_job_id":"5fa12010-bf79-4f89-b3ee-86285320b47d","html_url":"https://github.com/mezotv/chalk-advanced","commit_stats":{"total_commits":15,"total_committers":3,"mean_commits":5.0,"dds":"0.19999999999999996","last_synced_commit":"754c2858e5f18b3748dd85847a0cef17dbe25455"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mezotv%2Fchalk-advanced","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mezotv%2Fchalk-advanced/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mezotv%2Fchalk-advanced/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mezotv%2Fchalk-advanced/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mezotv","download_url":"https://codeload.github.com/mezotv/chalk-advanced/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248261936,"owners_count":21074226,"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":["chalk","chalk-advanced","chalkjs","nodejs","npm-module","npm-package","npmjs"],"created_at":"2024-09-25T00:36:41.587Z","updated_at":"2025-04-10T17:20:37.076Z","avatar_url":"https://github.com/mezotv.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# chalk-advanced\n\nChalk-advanced is a library that allows you to color your console output. This tool is used by projects like [Would You Bot](https://wouldyoubot.gg).\n\n[![npm](https://img.shields.io/npm/v/chalk-advanced?color=red\u0026label=VERSION)](https://www.npmjs.com/package/chalk-advanced)\n\n\n[![size](https://img.shields.io/github/repo-size/mezotv/chalk-advanced?color=red\u0026label=SIZE)](https://www.npmjs.com/package/chalk-advanced)\n\n[![downloads](https://img.shields.io/npm/dt/chalk-advanced?color=red)](https://www.npmjs.com/package/chalk-advanced)\n\n## Quick Links\n\n- [Installation](#installation)\n  - [Code Example](#code-example)\n- [Colors](#colors)\n- [Contributors](#contributors)\n\n## Installation\n\nInstall chalk-advanced with npm\n\n```bash\n  npm install chalk-advanced\n```\n\nInstall chalk-advanced with yarn\n\n```bash\n  yarn add chalk-advanced\n```\n\n## Code Examples\n\n```js\nconst { ChalkAdvanced } = require('chalk-advanced');\n\nconsole.log(ChalkAdvanced.red('Hello World!'));\n```\n\n```js\nconst { red } = require('chalk-advanced');\n\nconsole.log(red('Hello World!'));\n```\n\n```js\nconst { rgb } = require('chalk-advanced');\n\nconsole.log(rgb(250, 30, 107, \"Hello World!\"));\n```\n\n## Colors\n\n- **`black(text)`**:\n- **`red(text)`**:\n- **`green(text)`**:\n- **`yellow(text)`**:\n- **`blue(text)`**:\n- **`magenta(text)`**:\n- **`cyan(text)`**:\n- **`white(text)`**:\n- **`gray(text)`**:\n- **`redBright(text)`**:\n- **`greenBright(text)`**:\n- **`yellowBright(text)`**:\n- **`blueBright(text)`**:\n- **`magentaBright(text)`**:\n- **`cyanBright(text)`**:\n- **`whiteBright(text)`**:\n- **`bgBlack(text)`**:\n- **`bgRed(text)`**:\n- **`bgGreen(text)`**:\n- **`bgYellow(text)`**:\n- **`bgBlue(text)`**:\n- **`bgMagenta(text)`**:\n- **`bgCyan(text)`**:\n- **`bgWhite(text)`**:\n- **`bgRedBright(text)`**:\n- **`bgGreenBright(text)`**:\n- **`bgYellowBright(text)`**:\n- **`bgBlueBright(text)`**:\n- **`bgMagentaBright(text)`**:\n- **`bgCyanBright(text)`**:\n- **`bgWhiteBright(text)`**:\n- **`bold(text)`**:\n- **`dim(text)`**:\n- **`italic(text)`**:\n- **`underline(text)`**:\n- **`inverse(text)`**:\n- **`hide(text)`**:\n- **`strikethrough(text)`**:\n- **`hex(code, text)`**:\n- **`hsl(h, s, l, text)`**:\n- **`rgb(r, g, b, text)`**:\n\n## Contributors\n\n![image](https://contrib.rocks/image?repo=mezotv/chalk-advanced)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmezotv%2Fchalk-advanced","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmezotv%2Fchalk-advanced","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmezotv%2Fchalk-advanced/lists"}