{"id":50694004,"url":"https://github.com/imputnet/helium-prism","last_synced_at":"2026-06-09T05:06:25.936Z","repository":{"id":361377260,"uuid":"1253284507","full_name":"imputnet/helium-prism","owner":"imputnet","description":"Shared UI components of Helium web interfaces for Svelte","archived":false,"fork":false,"pushed_at":"2026-05-30T11:15:29.000Z","size":490,"stargazers_count":10,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-05-30T12:09:30.350Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://prism.helium.computer","language":"Svelte","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/imputnet.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},"funding":{"liberapay":"imput","custom":"https://donate.stripe.com/3cs2cc6ew1Qda4wbII"}},"created_at":"2026-05-29T10:07:08.000Z","updated_at":"2026-05-30T11:15:31.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/imputnet/helium-prism","commit_stats":null,"previous_names":["imputnet/helium-prism"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/imputnet/helium-prism","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imputnet%2Fhelium-prism","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imputnet%2Fhelium-prism/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imputnet%2Fhelium-prism/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imputnet%2Fhelium-prism/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/imputnet","download_url":"https://codeload.github.com/imputnet/helium-prism/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/imputnet%2Fhelium-prism/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34092351,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-09T02:00:06.510Z","response_time":63,"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":[],"created_at":"2026-06-09T05:06:25.488Z","updated_at":"2026-06-09T05:06:25.926Z","avatar_url":"https://github.com/imputnet.png","language":"Svelte","funding_links":["https://liberapay.com/imput","https://donate.stripe.com/3cs2cc6ew1Qda4wbII"],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003cimg width=\"1000\" alt=\"Helium Prism\" src=\"https://raw.githubusercontent.com/imputnet/helium-prism/refs/heads/main/docs/prism-splash.png\"\u003e\n\u003c/p\u003e\n\n## Helium Prism\n\nShared UI components of [Helium](https://github.com/imputnet/helium) web interfaces for Svelte.\n\nPrism UI library contains the shared building blocks used by web-based Helium applications and\nwebsites, such as: typography, buttons, inputs, loading states, icons, and the brand gradient\nshimmer effect.\n\nThis library isn't built for use outside of Helium web apps, so it may feel clunky for anything\nelse.\n\nDemo: [prism.helium.computer](https://prism.helium.computer/)\\\nnpm: [@imput/helium-prism](https://www.npmjs.com/package/@imput/helium-prism)\n\n## Installation\n\ndeno:\n\n```sh\ndeno add npm:@imput/helium-prism\n```\n\npnpm:\n\n```sh\npnpm add @imput/helium-prism\n```\n\nnpm:\n\n```sh\nnpm i @imput/helium-prism\n```\n\n## Basic usage\n\nImport the stylesheet once near the root of your app:\n\n```svelte\n\u003cscript\u003e\n    import \"@imput/helium-prism/styles.css\";\n\u003c/script\u003e\n```\n\nThen import components from the package root:\n\n```svelte\n\u003cscript\u003e\n    import { Button } from \"@imput/helium-prism\";\n\u003c/script\u003e\n\n\u003cButton primary\u003eButton\u003c/Button\u003e\n\u003cButton\u003eButton 2\u003c/Button\u003e\n```\n\nYou can also import all components at once if you're a madman or have an actual reason to do so\n(such as for [demo](src/demo/App.svelte) purposes):\n\n```svelte\n\u003cscript\u003e\n    import * as Prism from \"@imput/helium-prism\";\n\u003c/script\u003e\n\n\u003cPrism.Button primary\u003eButton\u003c/Prism.Button\u003e\n\u003cPrism.Button\u003eButton 2\u003c/Prism.Button\u003e\n```\n\n## API docs\n\nSample usage of components is documented in [docs/api.md](docs/api.md).\n\n## License\n\nHelium Prism is licensed under GPL-3.0, just like the rest of Helium. See [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimputnet%2Fhelium-prism","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fimputnet%2Fhelium-prism","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fimputnet%2Fhelium-prism/lists"}