{"id":17036047,"url":"https://github.com/christophery/proton","last_synced_at":"2025-10-09T10:13:13.435Z","repository":{"id":181594628,"uuid":"597551338","full_name":"christophery/proton","owner":"christophery","description":"Casper 5.0 theme for WordPress.","archived":false,"fork":false,"pushed_at":"2024-12-05T16:58:24.000Z","size":16187,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-03T03:48:05.717Z","etag":null,"topics":["blog","casper","theme","wordpress","wordpress-theme"],"latest_commit_sha":null,"homepage":"https://chrisyee.ca/proton/","language":"CSS","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/christophery.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":"2023-02-04T22:06:22.000Z","updated_at":"2025-04-16T13:29:05.000Z","dependencies_parsed_at":null,"dependency_job_id":"dd203e39-5dd0-43c8-8c73-e09a5aef6cf6","html_url":"https://github.com/christophery/proton","commit_stats":null,"previous_names":["christophery/proton"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/christophery/proton","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/christophery%2Fproton","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/christophery%2Fproton/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/christophery%2Fproton/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/christophery%2Fproton/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/christophery","download_url":"https://codeload.github.com/christophery/proton/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/christophery%2Fproton/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279001323,"owners_count":26083040,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-09T02:00:07.460Z","response_time":59,"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":["blog","casper","theme","wordpress","wordpress-theme"],"created_at":"2024-10-14T08:49:01.440Z","updated_at":"2025-10-09T10:13:13.417Z","avatar_url":"https://github.com/christophery.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Proton\n\nProton is a simple personal blogging theme for WordPress. \n\nThis theme is inspired by [Casper](https://github.com/TryGhost/Casper) 5.0, the default theme from the [Ghost](https://ghost.org/) blogging platform. \n\nThe goal of this theme was to port Casper 5.0 to WordPress while adding personal customizations.\n\nFeel free to [contact me](https://chrisyee.ca/contact/) if you use Proton in one of your websites.\n\n[View Demo](https://chrisyee.ca/) | [Download Theme](https://github.com/christophery/proton/releases)\n\n![Proton Screenshot](screenshot.png?raw=true)\n\n## Features\n\n- [Gutenberg Editor](https://wordpress.org/gutenberg/) Support\n- Search\n- Comments\n- Customizer\n- Social Profiles\n- Responsive Design\n- Infinite Scroll ([with Jetpack](https://jetpack.com/features/design/infinite-scroll/))\n- Dark Mode\n\n## Requirements\n\n- [WordPress](http://wordpress.org/)\n\n## Install\n\n1. In your admin panel, go to **Appearance** \u003e **Themes** and click the **Add New** button.\n2. Click **Upload Theme** and **Choose File**, then select the theme's .zip file. Click **Install Now**.\n3. Click **Activate** to use your new theme right away.\n\n## Color Scheme\n\nDark mode is not enabled by default. To enable this feature go to **Appearance** \u003e **Customize** \u003e **Site Identity** \u003e **Color Scheme**.\n\n### Light (default)\nThis will display the theme in light mode for everyone.\n\n### Dark\nThis will display the theme in dark mode for everyone.\n\n### Auto\nThis will automatically adjust the appearance based on the users OS appearance/color preference.\n\n## Editing Proton\nThe recommended way to edit the theme is to [create a child theme](https://developer.wordpress.org/themes/advanced-topics/child-themes/).\n\nThis will ensure that none of your changes will be lost when you update the theme.\n\n# Development\n\nProton styles are compiled using Gulp/PostCSS to polyfill future CSS spec. You'll need [Node](https://nodejs.org/), [Yarn](https://yarnpkg.com/) and [Gulp](https://gulpjs.com) installed globally. After that, from the theme's root directory:\n\n```bash\n# install dependencies\nyarn install\n\n# run development server\nyarn dev\n```\n\nNow you can edit `/assets/css/` files, which will be compiled to `/assets/built/` automatically.\n\nThe `zip` Gulp task packages the theme files into `dist/\u003ctheme-name\u003e.zip`, which you can then upload to your site.\n\n```bash\n# create .zip file\nyarn zip\n```\n\n# PostCSS Features Used\n\n- Autoprefixer - Don't worry about writing browser prefixes of any kind, it's all done automatically with support for the latest 2 major versions of every browser.\n- [Color Mod](https://github.com/jonathantneal/postcss-color-mod-function)\n\n\n# SVG Icons\n\nProton uses inline SVG icons, included. You can find all icons inside /template-parts/icons.\n\nTo use an icon just use the get_template_part() function:\n\n```\n\u003c?php get_template_part('template-parts/icons/website'); ?\u003e\n```\n\n# Third-party resources:\n\nCasper, Copyright (c) 2013-2022 [Ghost Foundation](https://ghost.org/)  \n**License:** [MIT license](https://github.com/TryGhost/Casper/blob/master/LICENSE).  \n**Source:** [https://github.com/TryGhost/Casper](https://github.com/TryGhost/Casper)  \n\n_s, Copyright 2015-2018 [Automattic, Inc.](https://automattic.com/)  \n**License:** [GPLv2 or later](https://www.gnu.org/licenses/gpl-2.0.html)  \n**Source:** [https://github.com/Automattic/_s/](https://github.com/Automattic/_s/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchristophery%2Fproton","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchristophery%2Fproton","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchristophery%2Fproton/lists"}