{"id":16473345,"url":"https://github.com/vikpe/vscode-theme-screenshots","last_synced_at":"2026-03-05T08:03:14.395Z","repository":{"id":254756832,"uuid":"847438129","full_name":"vikpe/vscode-theme-screenshots","owner":"vikpe","description":"Automate screenshots of Visual Studio Code themes.","archived":false,"fork":false,"pushed_at":"2024-08-31T12:05:12.000Z","size":1299,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-30T21:41:04.120Z","etag":null,"topics":["screenshots","themes","vscode"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/vikpe.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}},"created_at":"2024-08-25T20:22:58.000Z","updated_at":"2024-09-25T06:12:52.000Z","dependencies_parsed_at":"2024-08-25T23:07:31.981Z","dependency_job_id":"9eb4188c-1946-4910-a3bf-0b3ecbd8f5e0","html_url":"https://github.com/vikpe/vscode-theme-screenshots","commit_stats":null,"previous_names":["vikpe/vscode-theme-screenshots"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/vikpe/vscode-theme-screenshots","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vikpe%2Fvscode-theme-screenshots","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vikpe%2Fvscode-theme-screenshots/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vikpe%2Fvscode-theme-screenshots/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vikpe%2Fvscode-theme-screenshots/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vikpe","download_url":"https://codeload.github.com/vikpe/vscode-theme-screenshots/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vikpe%2Fvscode-theme-screenshots/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30115662,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T03:40:26.266Z","status":"ssl_error","status_checked_at":"2026-03-05T03:39:15.902Z","response_time":93,"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":["screenshots","themes","vscode"],"created_at":"2024-10-11T12:26:28.988Z","updated_at":"2026-03-05T08:03:14.371Z","avatar_url":"https://github.com/vikpe.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vscode-theme-screenshots\n\n\u003e Automate screenshots of Visual Studio Code themes\n\n**TLDR**; Use [Playwright](https://playwright.dev/) and [vscode.dev](https://vscode.dev/) to generate screenshots of Visual Studio Code themes.\n\n## Setup\n\n```sh\ngit clone https://github.com/vikpe/vscode-theme-screenshots\ncd vscode-theme-screenshots\nnpm install\nnpx playwright install --with-deps chromium\n```\n\n## Usage\n\n1. Edit `screenshots.config.ts`\n2. Put code samples in `/code_samples`\n3. `npx playwright test screenshots.spec`\n\nScreenshots are saved to `/dist/{themeId}/`\n\n## Example\n\n### Config\n\n```ts\nimport type { ScreenshotConfig } from \"./screenshots.types\";\n\nconst config: ScreenshotConfig = {\n  themeIds: [\"vikpe.synthwave-alpha\", \"Yummygum.city-lights-theme\"],\n  codeSamplesDir: \"code_samples\",\n  outputDir: \"dist\",\n\n  // remote files opened in the application overview screenshot (app.png)\n  // see https://vscode.dev/editor/theme/vikpe.synthwave-alpha for examples\n  defaultRemoteFiles: [\"package.json\", \"readme.md\"],\n};\n\nexport default config;\n```\n\n### Run\n\n```sh\n\u003e npx playwright test screenshots.spec\n\nRunning 2 tests using 2 workers\n\n  ✓  1 [chromium] › screenshots.spec.ts:13:6 › Yummygum.city-lights-theme (9.8s)\n  ✓  2 [chromium] › screenshots.spec.ts:13:6 › vikpe.synthwave-alpha (9.7s)\n\n  2 passed (10.1s)\n```\n\n### Output\n\n\u003cimg src=\"./.github/sample_output/vikpe.synthwave-alpha/app.png\" width=\"45%\" /\u003e\u003cimg src=\"./.github/sample_output/Yummygum.city-lights-theme/app.png\" width=\"45%\" /\u003e\n\n\u003cimg src=\"./.github/sample_output/vikpe.synthwave-alpha/markdown.md.png\" width=\"45%\" /\u003e\u003cimg src=\"./.github/sample_output/Yummygum.city-lights-theme/markdown.md.png\" width=\"45%\" /\u003e\n\n\u003cimg src=\"./.github/sample_output/vikpe.synthwave-alpha/html.html.png\" width=\"45%\" /\u003e\u003cimg src=\"./.github/sample_output/Yummygum.city-lights-theme/html.html.png\" width=\"45%\" /\u003e\n\n\u003cimg src=\"./.github/sample_output/vikpe.synthwave-alpha/php.php.png\" width=\"45%\" /\u003e\u003cimg src=\"./.github/sample_output/Yummygum.city-lights-theme/php.php.png\" width=\"45%\" /\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvikpe%2Fvscode-theme-screenshots","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvikpe%2Fvscode-theme-screenshots","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvikpe%2Fvscode-theme-screenshots/lists"}