{"id":15314234,"url":"https://github.com/barelyhuman/stone","last_synced_at":"2025-10-08T23:33:23.284Z","repository":{"id":101913619,"uuid":"403599928","full_name":"barelyhuman/stone","owner":"barelyhuman","description":"A hackable CSS-in-JSS and Theming solution","archived":true,"fork":false,"pushed_at":"2021-12-26T07:57:26.000Z","size":82,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"dev","last_synced_at":"2025-08-28T16:00:53.052Z","etag":null,"topics":["css","css-in-js","platform-agnostic","styled","styling"],"latest_commit_sha":null,"homepage":"https://npm.im/@barelyhuman/stone","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/barelyhuman.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},"funding":{"liberapay":"reaper","ko_fi":"barelyreaper","github":"barelyhuman","custom":"https://barelyreaper.gumroad.com/coffee"}},"created_at":"2021-09-06T11:39:52.000Z","updated_at":"2023-01-28T00:11:12.000Z","dependencies_parsed_at":null,"dependency_job_id":"2d7e567c-4ccd-4c17-82ae-a6901d32b6f4","html_url":"https://github.com/barelyhuman/stone","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/barelyhuman/stone","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/barelyhuman%2Fstone","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/barelyhuman%2Fstone/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/barelyhuman%2Fstone/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/barelyhuman%2Fstone/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/barelyhuman","download_url":"https://codeload.github.com/barelyhuman/stone/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/barelyhuman%2Fstone/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278995257,"owners_count":26082205,"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-08T02:00:06.501Z","response_time":56,"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":["css","css-in-js","platform-agnostic","styled","styling"],"created_at":"2024-10-01T08:44:49.951Z","updated_at":"2025-10-08T23:33:23.276Z","avatar_url":"https://github.com/barelyhuman.png","language":"TypeScript","funding_links":["https://liberapay.com/reaper","https://ko-fi.com/barelyreaper","https://github.com/sponsors/barelyhuman","https://barelyreaper.gumroad.com/coffee"],"categories":[],"sub_categories":[],"readme":"# stone\n\nA hackable CSS-in-JSS solution\n\n![Github](https://img.shields.io/github/license/barelyhuman/stone?logoColor=000\u0026colorA=000000\u0026colorB=000000)\n[![Javascript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg?colorA=000000\u0026colorB=000000)](https://standardjs.com)\n[![Build Size](https://img.shields.io/bundlephobia/minzip/@barelyhuman/stone?colorA=000000\u0026colorB=000000)](https://bundlephobia.com/result?p=@barelyhuman/stone)\n[![Version](https://img.shields.io/npm/v/@barelyhuman/stone?style=flat\u0026colorA=000000\u0026colorB=000000)](https://www.npmjs.com/package/@barelyhuman/stone)\n[![Downloads](https://img.shields.io/npm/dt/@barelyhuman/stone.svg?style=flat\u0026colorA=000000\u0026colorB=000000)](https://www.npmjs.com/package/@barelyhuman/stone)\n\n## About\n\n\u003e [WIP] IT WORKS RIGHT NOW BUT IS STILL IN ALPHA STAGES (THE API MIGHT CHANGE)\n\nStylebone is fun pet project that I wanted to do.\nIt's based off of [AndrewPrifer/theminator](https://github.com/AndrewPrifer/theminator)'s concept of being to use simple theme configurations and using them as styles.\n\nThis though isn't very performant when working with platforms so this library aims to move it ahead by acting as a pre-processor that bundles styles for the same.\n\nThis allows us to convert needed theme into proper stylesheets when working with **web** and `StyleSheet.create` insertions when working with something like **React Native**. These are accomplished by plugins or as I call them adaptors that create the needed files at runtime and import them as modules for web and create `Stylesheet.create` when working with React Native, or do anything else with the parsed css token, go **bonkers** with it and create your own adaptor as needed.\n\nThe library isn't limited to the two platforms as you can find other **handlers** (or create your own) to support you preferred platform.\n\n## Documentation\n\nYou can read the [docs here](https://stone.reaper.im/)\n\n## Roadmap\n\n- [x] Create style utilities\n- [x] Add handling for color manipulation\n- [ ] Add more needed plugins for the same\n- [x] Write processor for handling conversion into files\n- [x] Create adaptor to handle inline styling - `import {CSSWebInlineAdaptor} from \"@barelyhuman/stone`\n- [x] Create adaptor to inject styles to the html `style` tag - `import {CSSWebInjectAdaptor} from \"@barelyhuman/stone`\n- [ ] Create adaptor to create frozen objects of `StyleSheet.create` for React Native\n- [ ] Create adaptor / babel plugin / cli tool to read all css definitions and create a `.css` file out of it.\n\n## Contributing\n\nContributions are always welcome!\n\nFollow the general github flow of Fork =\u003e PR, make sure that you let the authors know about the issue you pick to avoid overlaps.\n\n## Authors\n\n- [@barelyhuman](https://www.github.com/barelyhuman)\n- [@AndrewPrifer](https://github.com/AndrewPrifer) - the original author of the idea\n\n## Support\n\nFor support, email ahoy@barelyhuman.dev\n\n## License\n\n[MIT](https://choosealicense.com/licenses/mit/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbarelyhuman%2Fstone","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbarelyhuman%2Fstone","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbarelyhuman%2Fstone/lists"}