{"id":15617988,"url":"https://github.com/omnedia/ngx-gradient-text","last_synced_at":"2026-04-01T16:57:10.725Z","repository":{"id":253944426,"uuid":"845001560","full_name":"omnedia/ngx-gradient-text","owner":"omnedia","description":"A simple component library to animate text.","archived":false,"fork":false,"pushed_at":"2025-11-29T17:09:21.000Z","size":8,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-03-27T23:42:05.056Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/omnedia.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-08-20T11:46:06.000Z","updated_at":"2026-03-25T10:29:20.000Z","dependencies_parsed_at":"2025-04-15T02:44:20.641Z","dependency_job_id":"38a4351a-fd90-4287-ac1e-33c8873423a5","html_url":"https://github.com/omnedia/ngx-gradient-text","commit_stats":null,"previous_names":["omnedia/ngx-gradient-text"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/omnedia/ngx-gradient-text","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnedia%2Fngx-gradient-text","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnedia%2Fngx-gradient-text/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnedia%2Fngx-gradient-text/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnedia%2Fngx-gradient-text/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/omnedia","download_url":"https://codeload.github.com/omnedia/ngx-gradient-text/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnedia%2Fngx-gradient-text/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31290538,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T13:12:26.723Z","status":"ssl_error","status_checked_at":"2026-04-01T13:12:25.102Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2024-10-03T08:00:53.744Z","updated_at":"2026-04-01T16:57:10.697Z","avatar_url":"https://github.com/omnedia.png","language":"TypeScript","funding_links":[],"categories":["Recently Updated","Third Party Components"],"sub_categories":["[Oct 01, 2024](/content/2024/10/01/README.md)","Animations"],"readme":"# ngx-gradient-text\n\n\u003ca href=\"https://ngxui.com\" target=\"_blank\" style=\"display: flex;gap: .5rem;align-items: center;cursor: pointer; padding: 0 0 0 0; height: fit-content;\"\u003e\n  \u003cimg src=\"https://ngxui.com/assets/img/ngxui-logo.png\" style=\"width: 64px;height: 64px;\"\u003e\n\u003c/a\u003e\n\nThis Library is part of the NGXUI ecosystem. \u003cbr\u003e\nView all available components at https://ngxui.com\n\n`@omnedia/ngx-gradient-text` is an Angular library that provides a dynamic gradient animation effect for text. This component allows you to display text with a smooth, animated gradient that transitions between two customizable colors.\n\n## Features\n\n- Animated gradient effect for text.\n- Customizable gradient start and end colors.\n- Lightweight and easy to integrate as a standalone component.\n\n## Installation\n\nInstall the library using npm:\n\n```bash\nnpm install @omnedia/ngx-gradient-text\n```\n\n## Usage\n\nImport the `NgxGradientTextComponent` in your Angular module or component:\n\n```typescript\nimport {NgxGradientTextComponent} from '@omnedia/ngx-gradient-text';\n\n@Component({\n  ...\n    imports:\n[\n  ...\n    NgxGradientTextComponent,\n],\n...\n})\n```\n\nUse the component in your template:\n\n```html\n\n\u003com-gradient-text\n  [text]=\"'Gradient Text Effect!'\"\n  [gradientStart]=\"'#ff7f50'\"\n  [gradientEnd]=\"'#6495ed'\"\n  styleClass=\"custom-gradient-text\"\n\u003e\u003c/om-gradient-text\u003e\n```\n\n## API\n\n```html\n\n\u003com-gradient-text\n  [text]=\"text\"\n  [gradientStart]=\"gradientStart\"\n  [gradientEnd]=\"gradientEnd\"\n  styleClass=\"your-custom-class\"\n\u003e\u003c/om-gradient-text\u003e\n```\n\n- `text` (required): The text content to be displayed with the gradient effect.\n- `gradientStart` (optional): The starting color of the gradient. Accepts any valid CSS color value.\n- `gradientEnd` (optional): The ending color of the gradient. Accepts any valid CSS color value.\n- `styleClass` (optional): A custom CSS class to apply to the gradient text element.\n\n## Example\n\n```html\n\n\u003com-gradient-text\n  [text]=\"'Hello World!'\"\n  [gradientStart]=\"'#ff69b4'\"\n  [gradientEnd]=\"'#8a2be2'\"\n  styleClass=\"gradient-text-style\"\n\u003e\u003c/om-gradient-text\u003e\n```\n\nThis will create an animated gradient text effect where the text \"Hello World!\" smoothly transitions between pink and blue-violet.\n\n## Styling\n\nTo customize the appearance of the gradient text, use the styleClass input to apply your own CSS classes.\n\n```css\n.gradient-text-style {\n  font-size: 48px;\n  font-weight: bold;\n  font-family: 'Verdana', sans-serif;\n}\n```\n\nThis will style the gradient text with a custom font size, weight, and font family.\n\n## Contributing\n\nContributions are welcome. Please submit a pull request or open an issue to discuss your ideas.\n\n## License\n\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fomnedia%2Fngx-gradient-text","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fomnedia%2Fngx-gradient-text","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fomnedia%2Fngx-gradient-text/lists"}