{"id":44713657,"url":"https://github.com/teseor/teseor","last_synced_at":"2026-02-19T20:00:47.097Z","repository":{"id":327950721,"uuid":"1111123926","full_name":"teseor/teseor","owner":"teseor","description":"CSS-first UI library with grid rhythm system. 47 framework-agnostic components built on design tokens and ITCSS architecture.","archived":false,"fork":false,"pushed_at":"2026-02-17T21:26:27.000Z","size":5781,"stargazers_count":0,"open_issues_count":57,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-17T21:52:24.896Z","etag":null,"topics":["bem","css","design-system","design-tokens","itcss","ui-components"],"latest_commit_sha":null,"homepage":"https://teseor.github.io/teseor/","language":"SCSS","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/teseor.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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-12-06T10:17:01.000Z","updated_at":"2026-02-17T20:58:09.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/teseor/teseor","commit_stats":null,"previous_names":["teseor/teseor"],"tags_count":31,"template":false,"template_full_name":null,"purl":"pkg:github/teseor/teseor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teseor%2Fteseor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teseor%2Fteseor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teseor%2Fteseor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teseor%2Fteseor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/teseor","download_url":"https://codeload.github.com/teseor/teseor/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/teseor%2Fteseor/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29629627,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T18:02:07.722Z","status":"ssl_error","status_checked_at":"2026-02-19T18:01:46.144Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["bem","css","design-system","design-tokens","itcss","ui-components"],"created_at":"2026-02-15T13:05:16.403Z","updated_at":"2026-02-19T20:00:47.091Z","avatar_url":"https://github.com/teseor.png","language":"SCSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Teseor\n\nCSS-first UI library with grid rhythm system. Framework-agnostic components built on design tokens.\n\n## Quick Start\n\n```bash\npnpm install\npnpm dev\n```\n\nOpen http://localhost:3000 for live docs.\n\n## Packages\n\n| Package | Description |\n|---------|-------------|\n| `@teseor/css` | CSS library with design tokens, components, and utilities |\n\n## Usage\n\n```html\n\u003clink rel=\"stylesheet\" href=\"@teseor/css/dist/index.css\"\u003e\n\n\u003cbutton class=\"ui-button ui-button--primary\"\u003ePrimary\u003c/button\u003e\n\u003cbutton class=\"ui-button ui-button--secondary ui-button--sm\"\u003eSmall Secondary\u003c/button\u003e\n```\n\n### CSS Custom Properties\n\nOverride at root level:\n```css\n:root {\n  --ui-color-primary: #0066cc;\n  --ui-button-height: 3rem;\n}\n```\n\nOr per-component:\n```html\n\u003cbutton class=\"ui-button\" style=\"--ui-button-bg: #ff6600;\"\u003eCustom\u003c/button\u003e\n```\n\n## Development\n\n```bash\npnpm dev          # Start docs dev server\npnpm build        # Build all packages\npnpm lint         # Lint (Biome + Stylelint)\npnpm test         # Run tests\n```\n\n### Adding Components\n\n1. Create folder in `packages/css/src/04-components/\u003cname\u003e/`\n2. Add `index.scss`, `\u003cname\u003e.api.json`, `\u003cname\u003e.docs.json`\n3. Run `pnpm --filter docs build-docs`\n\n## Architecture\n\n```\npackages/\n  css/            # Components organized by ITCSS layers\n    00-config/    # Layer definitions, design tokens\n    01-reset/     # CSS reset\n    02-base/      # Base element styles\n    03-layout/    # Layout primitives (stack, grid, center)\n    04-components/ # UI components (button, card, etc)\n    05-utilities/ # Helper classes\n    99-debug/     # Dev tools\napps/\n  docs/           # Living documentation site\n```\n\n## Naming\n\n- CSS classes: `.ui-button`, `.ui-button--primary`, `.ui-button__icon`\n- Tokens: `--ui-color-primary`, `--ui-space-2`, `--ui-button-height`\n- Internal vars: `--_bg`, `--_height` (component scope only)\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fteseor%2Fteseor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fteseor%2Fteseor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fteseor%2Fteseor/lists"}