{"id":38630004,"url":"https://github.com/dancer/gengar","last_synced_at":"2026-01-18T13:01:57.237Z","repository":{"id":320767707,"uuid":"965637409","full_name":"dancer/gengar","owner":"dancer","description":"Terminal UI Inspired By ShadCN/UI","archived":false,"fork":false,"pushed_at":"2025-06-14T16:02:01.000Z","size":993,"stargazers_count":24,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-21T02:03:40.061Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://geng.ar","language":"TypeScript","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/dancer.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,"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":"2025-04-13T15:46:15.000Z","updated_at":"2025-10-19T22:51:42.000Z","dependencies_parsed_at":null,"dependency_job_id":"1746f6c3-dd78-47f0-9717-091a7209d6dc","html_url":"https://github.com/dancer/gengar","commit_stats":null,"previous_names":["dancer/gengar"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dancer/gengar","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dancer%2Fgengar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dancer%2Fgengar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dancer%2Fgengar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dancer%2Fgengar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dancer","download_url":"https://codeload.github.com/dancer/gengar/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dancer%2Fgengar/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28504595,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-17T06:57:29.758Z","status":"ssl_error","status_checked_at":"2026-01-17T06:56:03.931Z","response_time":85,"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":"2026-01-17T09:00:02.530Z","updated_at":"2026-01-17T09:00:02.756Z","avatar_url":"https://github.com/dancer.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Gengar UI\n\nA modern, terminal-inspired component library for React applications. Built with Next.js, Tailwind CSS, and Radix UI primitives.\n\n![Terminal Style](/public/preview.png)\n\n## Features\n\n- **Terminal-Inspired Design**: Beautiful components that combine terminal aesthetics with modern usability\n- **Fully Customizable**: Every component can be styled and themed to match your brand\n- **Dark Mode Support**: Built-in dark mode with terminal-appropriate colors\n- **Modern Stack**: Built with Next.js, Tailwind CSS, and Radix UI primitives\n- **Copy and Use**: No installation needed - just copy the components you need\n\n## Components\n\n- Action Bar\n- Accordion\n- Alert\n- Avatar\n- Badge\n- Button\n- Card\n- Command Palette\n- Console Output\n- Dialog\n- Input\n- Progress Bar\n- Select\n- Tabs\n- Terminal Prompt\n- Tooltip\n- Tree View\n- Terminal\n- ASCII Art Generator\n- File Explorer\n- Network Monitor\n\n## Getting Started\n\n1. **Copy Components**: Visit our [documentation](https://geng.ar/docs) and copy the components you need.\n\n2. **Install Dependencies**:\n\n```bash\nnpm install tailwindcss postcss autoprefixer @radix-ui/react-slot class-variance-authority clsx tailwind-merge lucide-react\n```\n\n3. **Configure Tailwind**:\n\n```js\n// tailwind.config.js\nmodule.exports = {\n  darkMode: ['class'],\n  content: ['./components/**/*.{ts,tsx}', './app/**/*.{ts,tsx}'],\n  theme: {\n    extend: {\n      colors: {\n        border: 'hsl(var(--border))',\n        background: 'hsl(var(--background))',\n        foreground: 'hsl(var(--foreground))',\n        // ... other theme variables\n      },\n    },\n  },\n  plugins: [require('tailwindcss-animate')],\n}\n```\n\n4. **Start Building**: Import and use components in your project:\n\n```tsx\nimport { Button } from '@/components/ui/button'\n\nexport default function MyComponent() {\n  return \u003cButton\u003eHello, Terminal!\u003c/Button\u003e\n}\n```\n\n## Customization\n\nAll components use CSS variables for styling, making them easy to customize:\n\n```css\n:root {\n  --background: 0 0% 100%;\n  --foreground: 0 0% 3.9%;\n  --terminal-red: 0 84.2% 60.2%;\n  --terminal-yellow: 38 92% 50%;\n  --terminal-green: 142 71% 45%;\n  /* ... other variables */\n}\n\n.dark {\n  --background: 0 0% 3.9%;\n  --foreground: 0 0% 98%;\n  /* ... dark mode variables */\n}\n```\n\n## Contributing\n\nContributions are welcome! Feel free to:\n\n- Report bugs\n- Suggest new features\n- Submit pull requests\n- Improve documentation\n\n## License\n\nMIT License - feel free to use in your own projects.\n\n## Credits\n\nBuilt with:\n\n- [Next.js](https://nextjs.org)\n- [Tailwind CSS](https://tailwindcss.com)\n- [Radix UI](https://www.radix-ui.com)\n- [Lucide Icons](https://lucide.dev)\n- [shadcn/ui](https://ui.shadcn.com)\n\n## Support\n\n- [Documentation](https://geng.ar/docs)\n- [Issue Tracker](https://github.com/dancer/gengar/issues)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdancer%2Fgengar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdancer%2Fgengar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdancer%2Fgengar/lists"}