{"id":13880560,"url":"https://github.com/thoughtbot/design-system","last_synced_at":"2025-04-05T17:07:51.721Z","repository":{"id":30313862,"uuid":"114290977","full_name":"thoughtbot/design-system","owner":"thoughtbot","description":"thoughtbot design system (tbds)","archived":false,"fork":false,"pushed_at":"2025-02-25T14:59:44.000Z","size":847,"stargazers_count":57,"open_issues_count":4,"forks_count":8,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-03-29T16:08:47.682Z","etag":null,"topics":["css","design-system","sass"],"latest_commit_sha":null,"homepage":"https://thoughtbot.com","language":"SCSS","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/thoughtbot.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-12-14T19:58:31.000Z","updated_at":"2025-03-11T19:01:59.000Z","dependencies_parsed_at":"2023-12-18T10:31:35.394Z","dependency_job_id":"de715ad3-1976-4ffd-b392-c03fbd985ac1","html_url":"https://github.com/thoughtbot/design-system","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thoughtbot%2Fdesign-system","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thoughtbot%2Fdesign-system/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thoughtbot%2Fdesign-system/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thoughtbot%2Fdesign-system/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thoughtbot","download_url":"https://codeload.github.com/thoughtbot/design-system/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247369952,"owners_count":20927928,"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","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","design-system","sass"],"created_at":"2024-08-06T08:03:12.742Z","updated_at":"2025-04-05T17:07:51.704Z","avatar_url":"https://github.com/thoughtbot.png","language":"SCSS","funding_links":[],"categories":["SCSS"],"sub_categories":[],"readme":"# thoughtbot design system (tbds)\n\nA design system for thoughtbot websites.\n\n## Purpose\n\nThe purpose of the thoughtbot design system is to…\n\n- Learn about design systems so that we establish our skillset in the space\n  and provide services to our clients.\n- Support our internal and external websites and set a minimum standard of\n  design, accessibility, maintainability, and quality.\n\n## Applications using tbds\n\n- [Hub][hub]\n- [thoughtbot.com][thoughtbot.com]\n- [thoughtbot search][thoughtbot-search]\n- [tbot][tbot]\n- [Vellum][vellum]\n- [design.thoughtbot.com][design.thoughtbot.com]\n\n[hub]: https://hub.thoughtbot.com/\n[thoughtbot.com]: https://thoughtbot.com/\n[thoughtbot-search]: https://search.thoughtbot.com/\n[tbot]: https://tbot.io/\n[vellum]: https://vellum.thoughtbot.com/\n[design.thoughtbot.com]: https://design.thoughtbot.com/\n\n## Installation for Ruby on Rails\n\ntbds is available through npm and requires Rails 5.1+. Yarn is used to support\nHeroku deployment.\n\n1. Make sure you have the [Yarn][yarn] package manager installed:\n   https://yarnpkg.com/en/docs/install\n\n1. Install the design system package and save it as a dependency:\n\n    ```\n    yarn add @thoughtbot/design-system\n    ```\n\n1. Import the system in your Sass manifest:\n\n    ```\n    @import \"@thoughtbot/design-system/src/index\";\n    ```\n\n[yarn]: https://yarnpkg.com/en/\n\nAlternatively, you can assign an alias to the package for more terse usage:\n\n1. Install the design system package with an alias\n\n    ```\n    yarn add tbds@npm:@thoughtbot/design-system\n    ```\n\n1. Import the system using the alias\n\n    ```\n    @import \"tbds/src/index\";\n    ```\n\nTo import assets using the Rails asset pipeline:\n\n1. Add `node_modules` to the asset path.\n\n    ```ruby\n    # assets.rb\n    Rails.application.config.assets.paths \u003c\u003c Rails.root.join('node_modules')\n    ```\n\n1. Use the assets in `*.rb` and `*.erb`.\n\n    ```erb\n    image_tag \"@thoughtbot/design-system/src/logo/horizontal.svg\", title: \"thoughtbot\"\n    ```\n\n### Deploy Ruby on Rails app with tbds to Heroku\n\n1. Add `webpacker` to your `Gemfile` and install:\n\n    ```\n    gem \"webpacker\", require: false\n    ```\n\n    ```\n    bundle install\n    ```\n\n1. Add the [Node.js Buildpack][nodejs-buildpack] to your Heroku app.\n\n    Note: You'll need to order the buildpacks to have Node.js first, followed\n    by Ruby.\n\n[nodejs-buildpack]: https://elements.heroku.com/buildpacks/heroku/heroku-buildpack-nodejs\n\n## Compiled CSS\n\nEach version of tbds (starting with v0.7.0) is available as a minified CSS file\nthrough the [unpkg CDN][unpkg]. While this method is not recommended for\nproduction usage, it can be useful for adding tbds as an external stylesheet to\nCodePen’s or static sites to quickly prototype ideas.\n\n```\nhttps://unpkg.com/@thoughtbot/design-system@0.7.1/dist/tbds.css\n```\n\n[unpkg]: https://unpkg.com/\n\n## Browser support\n\ntbds supports:\n\n- Latest versions of Chrome, Firefox, and Safari\n- Edge 15+\n\n## Contributing\n\nTo learn about contributing to the project, please have a look at the [contributing] guide.\n\n[contributing]: /CONTRIBUTING.md\n\n## License\n\nthoughtbot/design-system is Copyright (c) 2020 thoughtbot, inc.\nIt is free software, and may be redistributed\nunder the terms specified in the [LICENSE] file.\n\n[LICENSE]: /LICENSE.md\n\n\u003c!-- START /templates/footer.md --\u003e\n## About thoughtbot\n\n![thoughtbot](https://thoughtbot.com/thoughtbot-logo-for-readmes.svg)\n\nThis repo is maintained and funded by thoughtbot, inc.\nThe names and logos for thoughtbot are trademarks of thoughtbot, inc.\n\nWe love open source software!\nSee [our other projects][community].\nWe are [available for hire][hire].\n\n[community]: https://thoughtbot.com/community?utm_source=github\n[hire]: https://thoughtbot.com/hire-us?utm_source=github\n\n\n\u003c!-- END /templates/footer.md --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthoughtbot%2Fdesign-system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthoughtbot%2Fdesign-system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthoughtbot%2Fdesign-system/lists"}