{"id":51774171,"url":"https://github.com/calebephrem/github-syntax-theme-store","last_synced_at":"2026-07-20T04:31:32.616Z","repository":{"id":364398177,"uuid":"1262184747","full_name":"calebephrem/github-syntax-theme-store","owner":"calebephrem","description":"just a test repo, don't mind","archived":false,"fork":false,"pushed_at":"2026-06-12T21:52:23.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-12T23:03:49.062Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/calebephrem.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":"2026-06-07T17:20:21.000Z","updated_at":"2026-06-12T21:52:27.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/calebephrem/github-syntax-theme-store","commit_stats":null,"previous_names":["calebephrem/github-syntax-theme-store"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/calebephrem/github-syntax-theme-store","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/calebephrem%2Fgithub-syntax-theme-store","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/calebephrem%2Fgithub-syntax-theme-store/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/calebephrem%2Fgithub-syntax-theme-store/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/calebephrem%2Fgithub-syntax-theme-store/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/calebephrem","download_url":"https://codeload.github.com/calebephrem/github-syntax-theme-store/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/calebephrem%2Fgithub-syntax-theme-store/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35674029,"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":"ssl_error","status_checked_at":"2026-07-20T02:08:09.736Z","response_time":111,"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":[],"created_at":"2026-07-20T04:31:28.562Z","updated_at":"2026-07-20T04:31:32.610Z","avatar_url":"https://github.com/calebephrem.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cbr /\u003e\n\u003cdiv align=\"center\"\u003e\n\n  \u003cimg src=\"https://github.com/calebephrem/github-syntax-themes/blob/main/public/icon-stroke.png?raw=true\" alt=\"GitHub Syntax Theme Store\" width=\"200\" height=\"200\" /\u003e\n\n  \u003cp align=\"center\" style=\"margin-top: 12px;\"\u003e\n    \u003cstrong\u003e\u003csmall\u003eGitHub Syntax Themes\u003c/small\u003e\u003c/strong\u003e\n  \u003c/p\u003e\n\n\u003c/div\u003e\n\n# GitHub Syntax Theme Store\n\nA centralized repository of syntax highlighting themes for the [GitHub Syntax Themes](https://github.com/calebephrem/github-syntax-themes) browser extension.\n\nThis store provides a collection of JSON theme files that define consistent syntax colors for GitHub code blocks, markdown snippets, etc.\n\n## What It Does\n\nThe theme store acts as a **registry of themes**. Each theme is defined in a simple JSON format and can be loaded by the extension.\n\nThemes describe:\n\n- **Name** → Human‑readable theme name\n- **Author** → GitHub username of the contributor\n- **Type** → `light` or `dark`\n- **SyntaxHighlighting** → Token colors for keywords, strings, comments, functions, etc.\n- **Optional icon** → Theme preview icon\n\n## Example Theme File\n\n```json\n{\n  \"$schema\": \"https://raw.githubusercontent.com/calebephrem/github-syntax-theme-store/refs/heads/main/schema.json\",\n  \"name\": \"Dracula\",\n  \"author\": \"dracula\",\n  \"type\": \"dark\",\n  \"description\": \"Classic dark theme with vibrant syntax colors\",\n  \"syntaxHighlighting\": {\n    \"comment\": \"#ffffff70\",\n    \"constant\": \"#ffdd70\",\n    \"constantNumeric\": \"#00ddee\",\n    \"constantBuiltin\": \"#ffdd70\",\n    \"keyword\": \"#86ff72\",\n    \"keywordControl\": \"#86ff72\",\n    \"string\": \"#aaff4f\",\n    \"stringRegexp\": \"#00ddee\",\n    \"variable\": \"#c0c0ff\"\n  }\n}\n```\n\n## How It Works\n\n- The **extension** fetches themes from this repository.\n- Each theme JSON is validated against the **GitHub Syntax Themer Schema** (`schema.json`).\n- The extension maps these values to GitHub’s internal syntax system (`.pl-*` classes and PrettyLights CSS variables).\n- Users can switch themes from the extension popup.\n\n## Contributing\n\nWe welcome contributions of new themes or improvements to existing ones.\n\nTo contribute:\n\n1. Fork this repository.\n2. Add your theme JSON file under the `themes/` directory.\n3. Ensure your file matches the schema (`schema.json`).\n4. Submit a pull request.\n\n\u003e [!TIP]\n\u003e Just provide the [schema.json](./schema.json) file along with a VS Code theme file of your choice to an AI agent, and it will generate a fully compatible theme file for you automatically. No manual writing needed ✨\n\nPlease include:\n\n- Theme name and description\n- Author (your GitHub username)\n- Theme type (`light` or `dark`)\n- SyntaxHighlighting values\n- Optional icon URL\n\n## Features\n\n- Centralized theme registry for the extension\n- Schema‑validated JSON format\n- Easy contribution workflow via pull requests\n- Supports both **light** and **dark** themes\n- Compatible with GitHub’s legacy and modern syntax systems\n\n## License\n\nMIT © Caleb Ephrem\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcalebephrem%2Fgithub-syntax-theme-store","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcalebephrem%2Fgithub-syntax-theme-store","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcalebephrem%2Fgithub-syntax-theme-store/lists"}