{"id":36974675,"url":"https://github.com/minhtrungcc/stark-theme","last_synced_at":"2026-01-13T22:01:11.904Z","repository":{"id":327180261,"uuid":"1108198072","full_name":"minhtrungcc/stark-theme","owner":"minhtrungcc","description":"A warm, paper-like theme with purple accents for the Zed editor.","archived":false,"fork":false,"pushed_at":"2025-12-12T07:41:42.000Z","size":11003,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-13T17:39:32.077Z","etag":null,"topics":["theme","zed","zed-editor","zed-extension","zed-theme"],"latest_commit_sha":null,"homepage":"https://zed-themes.com/themes/qyuI0kKKBwhY40baXKZNw","language":null,"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/minhtrungcc.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-12-02T06:40:19.000Z","updated_at":"2025-12-12T07:41:46.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/minhtrungcc/stark-theme","commit_stats":null,"previous_names":["minhtrungcc/zed-stark-theme","minhtrungcc/stark-theme"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/minhtrungcc/stark-theme","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minhtrungcc%2Fstark-theme","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minhtrungcc%2Fstark-theme/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minhtrungcc%2Fstark-theme/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minhtrungcc%2Fstark-theme/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/minhtrungcc","download_url":"https://codeload.github.com/minhtrungcc/stark-theme/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/minhtrungcc%2Fstark-theme/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28400397,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T14:36:09.778Z","status":"ssl_error","status_checked_at":"2026-01-13T14:35:19.697Z","response_time":56,"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":["theme","zed","zed-editor","zed-extension","zed-theme"],"created_at":"2026-01-13T22:01:10.854Z","updated_at":"2026-01-13T22:01:11.906Z","avatar_url":"https://github.com/minhtrungcc.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Stark Theme\n\nA warm, paper-like theme with purple accents. Available in light and dark variants.\n\n## Multi-Editor Support\n\nStark Theme is designed to provide a consistent experience across multiple code editors. Currently supported:\n\n- **Zed** - Native extension support\n- **VS Code** - Full marketplace integration\n\nThe project is structured to make adding new editor support straightforward. Each editor has its own directory under `editors/` with theme files in the appropriate format.\n\n## Variants\n\n### Stark Light\n\nA warm, cream-toned light theme\n\n![Stark Light](assets/light.png)\n\n### Stark Dark\n\nA cozy dark theme with warm undertones\n\n![Stark Dark](assets/dark.png)\n\n## Installation\n\n### Zed\n\n#### From Zed Extensions\n\n1. Open Zed\n2. Go to Extensions (cmd+shift+x)\n3. Search for \"Stark\"\n4. Click Install\n\n#### Manual Installation\n\n1. Copy the `editors/zed` directory contents to your Zed extensions folder\n2. Restart Zed and select the theme from settings\n\n### VS Code\n\n#### From VS Code Marketplace\n\n1. Open VS Code\n2. Go to Extensions (cmd+shift+x)\n3. Search for \"Stark Theme\"\n4. Click Install\n\n#### Manual Installation\n\n1. Copy the `editors/vscode` directory to `~/.vscode/extensions/stark-theme`\n2. Restart VS Code and select the theme from Color Theme settings\n\n#### Building VSIX Package\n\n1. Navigate to the VS Code theme directory:\n   ```bash\n   cd editors/vscode\n   ```\n2. Package the extension:\n   ```bash\n   npx vsce package\n   ```\n3. Install the generated `.vsix` file in VS Code via Extensions \u003e Install from VSIX\n\n## Project Structure\n\n```\nstark-theme/\n├── assets/              # Theme preview images\n│   ├── light.png\n│   └── dark.png\n├── editors/\n│   ├── zed/             # Zed editor theme\n│   │   ├── extension.toml\n│   │   └── themes/\n│   │       └── stark.json\n│   └── vscode/          # VS Code theme\n│       ├── package.json\n│       └── themes/\n│           ├── stark-light.json\n│           └── stark-dark.json\n├── LICENSE\n└── README.md\n```\n\n## Adding Support for New Editors\n\nTo add support for a new editor:\n\n1. Create a new directory under `editors/` with the editor name\n2. Add the theme files in the format required by that editor\n3. Update this README with installation instructions\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fminhtrungcc%2Fstark-theme","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fminhtrungcc%2Fstark-theme","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fminhtrungcc%2Fstark-theme/lists"}