{"id":22229717,"url":"https://github.com/boycce/cherry","last_synced_at":"2025-07-27T19:31:35.104Z","repository":{"id":35115520,"uuid":"208544861","full_name":"boycce/cherry","owner":"boycce","description":"🍒 Minimal and comprehensible CSS framework","archived":false,"fork":false,"pushed_at":"2024-08-24T02:54:49.000Z","size":1341,"stargazers_count":3,"open_issues_count":4,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-20T09:50:06.349Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://boycce.github.io/cherry/","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/boycce.png","metadata":{"files":{"readme":"docs/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}},"created_at":"2019-09-15T05:04:43.000Z","updated_at":"2024-08-24T02:54:52.000Z","dependencies_parsed_at":"2024-06-13T15:59:17.535Z","dependency_job_id":"217a7adf-d527-410c-b60f-17b145746997","html_url":"https://github.com/boycce/cherry","commit_stats":{"total_commits":142,"total_committers":1,"mean_commits":142.0,"dds":0.0,"last_synced_commit":"5f638b2ec2df578ddc76cd528d9528be73e90ca2"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/boycce/cherry","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boycce%2Fcherry","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boycce%2Fcherry/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boycce%2Fcherry/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boycce%2Fcherry/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/boycce","download_url":"https://codeload.github.com/boycce/cherry/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/boycce%2Fcherry/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267413629,"owners_count":24083467,"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-07-27T02:00:11.917Z","response_time":82,"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":[],"created_at":"2024-12-03T01:12:03.673Z","updated_at":"2025-07-27T19:31:34.805Z","avatar_url":"https://github.com/boycce.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"![](./assets/imgs/cherry.jpg)\n\n[![NPM](https://img.shields.io/npm/v/cherry.svg)](https://www.npmjs.com/package/cherry) [![Build Status](https://travis-ci.com/boycce/cherry.svg?branch=master)](https://app.travis-ci.com/github/boycce/cherry)\n\n## Install\n\nThis repository is distributed with NPM. After installing NPM, you can install Cherry CSS via:\n\n```sh\nnpm install --save cherry\n```\n\n## Version\n\n- `^1.0` has been rewritten to use Dart SASS\n- `^0.1` uses node-sass\n\n## Usage\n\nAfter installation, you can then import the SCSS into your project sourcing from your `node_modules` directory:\n\n```scss\n@import \"../node_modules/cherry/cherry.scss\";\n\n// Or to modify the SASS variables, import like so\n\n@import \"../node_modules/cherry/scss/variables.scss\";\n// Your variable definitions here\n// e.g. $primary: blue;\n@import \"../node_modules/cherry/cherry.scss\";\n```\n\n## Browser Support\n\nCherry uses [autoprefixer](https://github.com/postcss/autoprefixer) to make (most) Flexbox features compatible with earlier browser versions. According to [Can I use](https://caniuse.com/#feat=flexbox), Cherry is compatible with **recent** versions of:\n\n* Chrome\n* Edge\n* Explorer 10+ (partially supported)\n* Firefox\n* Opera\n* Safari\n\n## Changes v1.0.3\n\n1. The toggle styling has changed\n2. styling variables for checkboxes and radios have changed\n\n### Changed form variables\n```scss\n$forms: (\n  \"variable-color\" // defaulted to `darken(\"input-background\"), 12%`, this is now transparent\n)\n```\n\n### Removed form variables\n```scss\n$forms: (\n  // Checkbox/radio\n  \"checkbox-border-width\" // renamed to \"variable-border-width\"\n  \"checkbox-border-radius\" // renamed to \"variable-border-radius\"\n  \"checkbox-font-family\" // renamed to \"variable-font-family\"\n  \"checkbox-font-size\" // renamed to \"variable-font-size\"\n  \"checkbox-font-weight\" // renamed to \"variable-font-weight\"\n  \"checkbox-letter-spacing\" // renamed to \"variable-letter-spacing\"\n  \"checkbox-text-transform\" // renamed to \"variable-text-transform\"\n  \"checkbox-padding-left\" // renamed to \"variable-padding-left\"\n  \"checkbox-padding-right\" // renamed to \"variable-padding-right\"\n)\n```\n\n### Added form variables\n```scss\n$forms: (\n  // Toggle/Checkbox/Radio\n  \"variable-color--active\":        map-get($form, \"variable-color--active\")\n  \"variable-background\":           map-get($form, \"variable-background\"),\n  \"variable-background--active\":   map-get($form, \"variable-background--active\"),\n  \"variable-border-color\":         map-get($form, \"variable-border-color\"),\n  \"variable-border-color--active\": map-get($form, \"variable-border-color--active\"),\n  // Checkbox \n  \"checkbox-stroke-width\":         8,\n  // Toggle\n  \"toggle-inner-space\":            4px,\n  \"toggle-color\":                  map-get($form, \"variable-border-color\")\n  \"toggle-color--active\":          map-get($form, \"variable-color--active\")\n  \"toggle-background\":             map-get($form, \"variable-background\")\n  \"toggle-background--active\":     map-get($form, \"variable-background--active\")\n  \"toggle-border-color\":           map-get($form, \"variable-border-color\")\n  \"toggle-border-color--active\":   map-get($form, \"variable-border-color--active\")\n  \"toggle-border-width\":           map-get($form, \"variable-border-width\")\n)\n```\n\n## Special Thanks\n\n[Willy Blandin](https://github.com/blandinw)\n[The Bulma Project](https://github.com/jgthms/bulma)\n\n## Copyright and license\n\nCopyright 2019 Ricky Boyce. Code released under [the MIT license](https://github.com/boycce/cherry/blob/master/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboycce%2Fcherry","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fboycce%2Fcherry","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboycce%2Fcherry/lists"}