{"id":51912768,"url":"https://github.com/ambystechcom/Ambystech.Elaris.UI","last_synced_at":"2026-07-29T05:00:59.755Z","repository":{"id":321149109,"uuid":"1084660580","full_name":"ambystechcom/Ambystech.Elaris.UI","owner":"ambystechcom","description":"A lightweight Terminal UI library for .NET with true 24-bit RGB color support. Built for modern terminals with cross-platform support.","archived":false,"fork":false,"pushed_at":"2026-04-20T02:56:48.000Z","size":2121,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-07-25T04:23:59.914Z","etag":null,"topics":["csharp","dotnet","linux","macos","terminal","terminal-ui","terminal-user-interface","windows-11"],"latest_commit_sha":null,"homepage":"https://ambystech.io/Ambystech.Elaris.UI/","language":"C#","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/ambystechcom.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":"2025-10-28T01:36:28.000Z","updated_at":"2026-06-24T19:35:15.000Z","dependencies_parsed_at":"2025-10-28T04:19:19.046Z","dependency_job_id":"8ae807fe-b07a-4674-94a0-e0ec00df18cd","html_url":"https://github.com/ambystechcom/Ambystech.Elaris.UI","commit_stats":null,"previous_names":["ambystechcom/ambystech.elaris.ui"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/ambystechcom/Ambystech.Elaris.UI","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ambystechcom%2FAmbystech.Elaris.UI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ambystechcom%2FAmbystech.Elaris.UI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ambystechcom%2FAmbystech.Elaris.UI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ambystechcom%2FAmbystech.Elaris.UI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ambystechcom","download_url":"https://codeload.github.com/ambystechcom/Ambystech.Elaris.UI/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ambystechcom%2FAmbystech.Elaris.UI/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":36018011,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-07-20T02:08:10.276Z","status":"online","status_checked_at":"2026-07-29T02:00:04.910Z","response_time":95,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["csharp","dotnet","linux","macos","terminal","terminal-ui","terminal-user-interface","windows-11"],"created_at":"2026-07-27T07:00:59.050Z","updated_at":"2026-07-29T05:00:59.746Z","avatar_url":"https://github.com/ambystechcom.png","language":"C#","funding_links":[],"categories":["Table of Contents"],"sub_categories":[],"readme":"# Ambystech.Elaris.UI\n\n![Elaris](icon.png)\n\n[![NuGet](https://img.shields.io/nuget/v/Ambystech.Elaris.UI.svg)](https://www.nuget.org/packages/Ambystech.Elaris.UI/)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n=======================\nA lightweight Terminal UI library for .NET with true 24-bit RGB color support. Built for modern terminals with cross-platform support.\n\n## Features\n\n- **True 24-bit RGB Color**: Full truecolor support via ANSI escape sequences\n- **Zero Dependencies**: Pure .NET implementation with no external packages\n- **Cross-Platform**: Works on Windows, macOS, and Linux\n- **Modern Architecture**: Clean, extensible widget-based design\n- **High Performance**: Double-buffered rendering with minimal overhead\n- **Multi-Target**: Supports .NET 8.0, .NET 9.0, and .NET 10.0\n\n## Quick Start\n\n### Installation\n\n```bash\ndotnet add package Ambystech.Elaris.UI\n```\n\n### Basic Usage\n\n```csharp\nusing Ambystech.Elaris.UI;\n\n// Create application\nvar app = new Application();\n\n// Create main window\nvar window = new Window(\"Hello Elaris\")\n{\n    Width = 80,\n    Height = 24\n};\n\n// Add widgets\nvar label = new Label(\"Welcome to Elaris!\")\n{\n    ForegroundColor = Color.FromRgb(100, 200, 255)\n};\nwindow.Add(label);\n\n// Run application\napp.Run(window);\n```\n\n### Cross Platform Compatibility\n\nElaris.UI is designed to work seamlessly across Windows, macOS, and Linux terminals that support ANSI escape codes. Ensure your terminal supports truecolor for the best experience.\n\n#### Windows Terminal\n\n![Windows Terminal](assets/windows_terminal.png)\n\n#### iTerm2 (macOS)\n![iTerm2](assets/iterm2.png)\n\n## Building from Source\n\n```bash\n# Clone repository\ngit clone https://github.com/ambystechcom/Ambystech.Elaris.UI.git elaris\ncd elaris/lib\n\n# Restore dependencies\ndotnet restore\n\n# Build library\ndotnet build\n\n# Run tests\ndotnet test\n```\n\n## Architecture\n\n### Core Components\n\n- **Screen**: Terminal screen abstraction with buffering\n- **Widget**: Base class for all UI components\n- **EventLoop**: Main application loop and event handling\n- **AnsiRenderer**: 24-bit RGB color rendering via ANSI codes\n- **InputHandler**: Keyboard and mouse input processing\n\n### Widget Hierarchy\n\n```\nWidget (abstract base)\n├── Container\n│   ├── Window\n│   ├── Frame\n│   └── Panel\n├── Label\n├── TextField\n├── TextView\n└── StatusBar\n```\n\n## License\n\nMIT License - see LICENSE file for details\n\n## Contributing\n\nContributions welcome! Please open an issue or PR on GitHub.\n\n## Links\n\n- GitHub: https://github.com/ambystechcom/Ambystech.Elaris.UI\n- NuGet: https://www.nuget.org/packages/Ambystech.Elaris.UI\n- Documentation: (Coming soon)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fambystechcom%2FAmbystech.Elaris.UI","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fambystechcom%2FAmbystech.Elaris.UI","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fambystechcom%2FAmbystech.Elaris.UI/lists"}