{"id":15287558,"url":"https://github.com/peterfritz/gradient-figlet","last_synced_at":"2025-07-05T19:06:34.176Z","repository":{"id":57252989,"uuid":"452961507","full_name":"peterfritz/gradient-figlet","owner":"peterfritz","description":"A CLI tool that creates gradient ASCII art from text with FIGlet and style.","archived":false,"fork":false,"pushed_at":"2023-03-07T04:37:14.000Z","size":750,"stargazers_count":5,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-05-02T01:04:55.284Z","etag":null,"topics":["cli","figlet","gradient-text","greeter","nodejs","zsh"],"latest_commit_sha":null,"homepage":"","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/peterfritz.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-01-28T06:22:12.000Z","updated_at":"2024-04-18T20:20:09.000Z","dependencies_parsed_at":"2024-09-30T15:41:45.441Z","dependency_job_id":null,"html_url":"https://github.com/peterfritz/gradient-figlet","commit_stats":{"total_commits":4,"total_committers":2,"mean_commits":2.0,"dds":0.25,"last_synced_commit":"e8694f3b99230f68e27fa2c383794bf17c1cb95a"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peterfritz%2Fgradient-figlet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peterfritz%2Fgradient-figlet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peterfritz%2Fgradient-figlet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peterfritz%2Fgradient-figlet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/peterfritz","download_url":"https://codeload.github.com/peterfritz/gradient-figlet/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248670470,"owners_count":21142896,"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":["cli","figlet","gradient-text","greeter","nodejs","zsh"],"created_at":"2024-09-30T15:31:37.226Z","updated_at":"2025-04-13T05:32:51.396Z","avatar_url":"https://github.com/peterfritz.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003ch1\u003egradient-figlet\u003c/h1\u003e\n  \u003cp\u003eA CLI that creates gradient ASCII art from text with FIGlet and style.\u003c/p\u003e\n\u003c/div\u003e\n\n\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://www.npmjs.com/package/gradient-figlet\"\u003e\n    \u003cimg src=\"https://img.shields.io/npm/v/gradient-figlet?style=flat-square\" alt=\"npm version\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"#\"\u003e\n    \u003cimg src=\"https://img.shields.io/npm/dt/gradient-figlet?style=flat-square\" alt=\"npm downloads\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"LICENSE\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/license/peterfritz/gradient-figlet?style=flat-square\" alt=\"license\" /\u003e\n  \u003c/a\u003e\n\u003c/div\u003e\n\n\u003ca href=\"#\"\u003e\n  \u003cimg src=\"https://user-images.githubusercontent.com/61599784/151580761-95edc909-7915-43af-bfe9-6dfc9a04c2fd.png\" alt=\"gradient-figlet logo\"\u003e\n\u003c/a\u003e\n\n\u003chr /\u003e\n\n## Basic usage\n\nYou can use npx to install and run the package\n\n\u003ch4 id=\"basic-usage\"\u003e\u003ccode\u003enpx gradient-figlet \"your text here\" -l\u003c/code\u003e\u003c/h4\u003e\n\u003ca href=\"#\"\u003e\n  \u003cimg src=\"https://user-images.githubusercontent.com/61599784/151617788-22abe574-927d-4b9f-b986-51a278342073.png\" alt='npx gradient-figlet \"your text here\" -l'\u003e\n\u003c/a\u003e\n\n## Options\n\n| option         | description                                       | default value | required | [examples](#examples)    |\n| -------------- | ------------------------------------------------- | ------------- | -------- | ------------------------ |\n| -l             | adds a trailing newline to fix vertical alignment | false         | false    | [-l](#l)                 |\n| -m             | makes the gradient horizontal                     | false         | false    | [-lm](#lm)               |\n| -t `theme`     | changes the theme ([themes list](#themes))        | 'rainbow'     | false    | [-lt](#lt)               |\n| --from `color` | gradient's start color                            | null          | false    | [--from, --to](#from-to) |\n| --to `color`   | gradient's end color                              | null          | false    | [--from, --to](#from-to) |\n\n### Themes\n\nOne of [gradient-string's built-in gradients](https://github.com/bokub/gradient-string#available-built-in-gradients) listed below.\n\n\u003ch4 id=\"list-themes\"\u003e\u003ccode\u003enpx gradient-figlet --list-themes\u003c/code\u003e\u003c/h4\u003e\n\u003ca href=\"#\"\u003e\n  \u003cimg src=\"https://user-images.githubusercontent.com/61599784/151613280-8b0b8876-b04c-421f-ad6b-8097f163f864.png\" alt='npx gradient-figlet --list-themes'\u003e\n\u003c/a\u003e\n\n### Examples\n\n\u003ch4 id=\"l\"\u003e\u003ccode\u003enpx gradient-figlet \"your text here\" -l\u003c/code\u003e\u003c/h4\u003e\n\u003ca href=\"#\"\u003e\n  \u003cimg src=\"https://user-images.githubusercontent.com/61599784/151594015-5e61b5b3-e19c-4841-972e-1dba269de089.png\" alt='npx gradient-figlet \"your text here\" -l'\u003e\n\u003c/a\u003e\n\n\u003ch4 id=\"lm\"\u003e\u003ccode\u003enpx gradient-figlet \"your text here\" -lm\u003c/code\u003e\u003c/h4\u003e\n\u003ca href=\"#\"\u003e\n  \u003cimg src=\"https://user-images.githubusercontent.com/61599784/151595739-6a193e69-0d07-4ff1-bf88-60c00046e968.png\" alt='npx gradient-figlet \"your text here\" -lm'\u003e\n\u003c/a\u003e\n\n\u003ch4 id=\"lt\"\u003e\u003ccode\u003enpx gradient-figlet \"your text here\" -lt \u003ca href=\"#themes\"\u003eretro\u003c/a\u003e\u003c/code\u003e\u003c/h4\u003e\n\u003ca href=\"#\"\u003e\n  \u003cimg src=\"https://user-images.githubusercontent.com/61599784/151597620-9f7a2968-c58b-47ce-9f12-22bba25c16e7.png\" alt='npx gradient-figlet \"your text here\" -lt retro'\u003e\n\u003c/a\u003e\n\n\u003ch4 id=\"from-to\"\u003e\u003ccode\u003enpx gradient-figlet --from \"#42047e\" --to \"#07f49e\" -l\u003c/code\u003e\u003c/h4\u003e\n\u003ca href=\"#\"\u003e\n  \u003cimg src=\"https://user-images.githubusercontent.com/61599784/151616113-754a46d2-9515-4565-92d8-dc76abd710c9.png\" alt='npx gradient-figlet --from \"#42047e\" --to \"#07f49e\" -l'\u003e\n\u003c/a\u003e\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeterfritz%2Fgradient-figlet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpeterfritz%2Fgradient-figlet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeterfritz%2Fgradient-figlet/lists"}