[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-7657":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":15,"subscribersCount":15,"size":15,"stars1d":15,"stars7d":15,"stars30d":15,"stars90d":15,"forks30d":15,"starsTrendScore":15,"compositeScore":16,"rankGlobal":10,"rankLanguage":10,"license":17,"archived":18,"fork":19,"defaultBranch":20,"hasWiki":19,"hasPages":19,"topics":21,"createdAt":10,"pushedAt":10,"updatedAt":29,"readmeContent":30,"aiSummary":31,"trendingCount":15,"starSnapshotCount":15,"syncStatus":14,"lastSyncTime":32,"discoverSource":33},7657,"bourbon","thoughtbot\u002Fbourbon","thoughtbot","A Lightweight Sass Tool Set","https:\u002F\u002Fwww.bourbon.io\u002F",null,"Ruby",9012,859,2,0,39.8,"MIT License",true,false,"main",[5,22,23,24,25,26,27,28],"bourbon-family","css","sass","sass-functions","sass-library","sass-mixins","scss","2026-06-12 02:01:42","[\u003Cimg src=\"https:\u002F\u002Fimages.thoughtbot.com\u002Fbourbon\u002Fbourbon-logo.svg\" width=\"200\" alt=\"Bourbon logo\">][Bourbon]\n\n[![Reviewed by Hound](https:\u002F\u002Fimg.shields.io\u002Fbadge\u002FReviewed_by-Hound-8E64B0.svg)](https:\u002F\u002Fhoundci.com)\n\n## Deprecated as of September 13, 2024\n\nThis project is no longer maintained. We encourage people to leverage the modern native CSS features in lieu of this library. You can refer to [our blog post](https:\u002F\u002Fthoughtbot.com\u002Fblog\u002Fyou-might-not-need-bourbon) on how to go about replacing or rethinking each helper.\n\n## A Lightweight Sass Tool Set\n\n[Bourbon] is a library of [Sass] mixins and functions that are designed to make\nyou a more efficient style sheet author.\n\nIt is…\n\n- Dependency-free: Bourbon is pure Sass.\n- Human-readable: We aim for clarity over brevity.\n- Lightweight: Zero output post-install and has no visual opinion.\n\n  [Bourbon]: https:\u002F\u002Fwww.bourbon.io\u002F\n  [Sass]: http:\u002F\u002Fsass-lang.com\n\n### Helpful Links\n\n- [Documentation](https:\u002F\u002Fwww.bourbon.io\u002Fdocs\u002Flatest\u002F)\n- [Change log](CHANGELOG.md)\n- [Twitter](https:\u002F\u002Ftwitter.com\u002Fbourbonsass)\n- [Stack Overflow](https:\u002F\u002Fstackoverflow.com\u002Fquestions\u002Ftagged\u002Fbourbon)\n\n## Table of Contents\n\n- [Requirements](#requirements)\n- [Installation](#installation)\n- [Command Line Interface](#command-line-interface)\n- [Browser Support](#browser-support)\n- [Contributing](#contributing)\n- [License](#license)\n- [About](#about)\n\n## Requirements\n\n- [Sass] 3.4+ or [LibSass] 3.3+\n\n  [Sass]: https:\u002F\u002Fgithub.com\u002Fsass\u002Fsass\n  [LibSass]: https:\u002F\u002Fgithub.com\u002Fsass\u002Flibsass\n\n## Installation\n\n1. Install the Bourbon gem using the [RubyGems] package manager:\n\n    ```bash\n    gem install bourbon\n    ```\n\n1. Install the Bourbon library into the current directory:\n\n    ```bash\n    bourbon install\n    ```\n\n    **Pro Tip:** You can target installation into a specific directory using the\n    `path` flag:\n\n    ```bash\n    bourbon install --path my\u002Fcustom\u002Fpath\u002F\n    ```\n\n1. Import Bourbon at the beginning of your stylesheet:\n\n    ```scss\n    @import \"bourbon\u002Fbourbon\";\n    ```\n\n    It’s not recommended that you modify Bourbon’s files directly as it will\n    make updating to future versions difficult, by overwriting your custom\n    changes or causing merge conflicts.\n\n  [RubyGems]: https:\u002F\u002Frubygems.org\n\n### Installation for Ruby on Rails 4.2+\n\n1. Add Bourbon to your Gemfile:\n\n    ```ruby\n    gem \"bourbon\"\n    ```\n\n1. Then run:\n\n    ```bash\n    bundle install\n    ```\n\n1. Restart your server and rename `application.css` to `application.scss`:\n\n    ```bash\n    mv app\u002Fassets\u002Fstylesheets\u002Fapplication.css app\u002Fassets\u002Fstylesheets\u002Fapplication.scss\n    ```\n\n1. Delete _all_ Sprockets directives in `application.scss` (`require`,\n   `require_tree` and `require_self`) and use Sass’s native `@import` instead\n   ([why?][sass-import]).\n\n1. Import Bourbon at the beginning of `application.scss`. Any project styles\n   that utilize Bourbon’s features must be imported after Bourbon.\n\n    ```scss\n    @import \"bourbon\";\n    @import \"home\";\n    @import \"users\";\n    ```\n\n  [sass-import]: https:\u002F\u002Fcontent.pivotal.io\u002Fblog\u002Fstructure-your-sass-files-with-import\n\n### Installing with npm and using a Node-based asset pipeline\n\n1. Add Bourbon as a dependency:\n\n    ```bash\n    npm install --save bourbon\n    ```\n\n1. If you’re using [eyeglass], skip to Step 3. Otherwise, you’ll need to add\n   Bourbon to your node-sass `includePaths` option.\n   `require(\"bourbon\").includePaths` is an array of directories that you should\n   pass to node-sass. How you do this depends on how node-sass is integrated\n   into your project.\n\n1. Import Bourbon into your Sass files:\n\n    ```scss\n    @import \"bourbon\";\n    ```\n\n  [eyeglass]: https:\u002F\u002Fgithub.com\u002Fsass-eyeglass\u002Feyeglass\n\n### Installing older versions of Bourbon\n\n1. Uninstall any Bourbon gem versions you already have:\n\n    ```bash\n    gem uninstall bourbon\n    ```\n\n1. Reinstall the Bourbon gem, using the `-v` flag to specify the version\n   you need:\n\n    ```bash\n    gem install bourbon -v 4.2.7\n    ```\n\n1. Follow the [instructions above](#installation) to install Bourbon into\n   your project.\n\n## Command Line Interface\n\n```bash\nbourbon [options]\n```\n\n### Options\n\n| Option            | Description               |\n| :---------------- | :------------------------ |\n| `-h`, `--help`    | Show help                 |\n| `-v`, `--version` | Show the version number   |\n| `--path`          | Specify a custom path     |\n| `--force`         | Force install (overwrite) |\n\n### Commands\n\n| Command           | Description                                           |\n| :---------------- | :---------------------------------------------------- |\n| `bourbon install` | Install Bourbon into the current directory            |\n| `bourbon update`  | Overwrite and update Bourbon in the current directory |\n| `bourbon help`    | Show help                                             |\n\n## Browser Support\n\nBourbon supports Internet Explorer 11+ and the latest versions of Chrome,\nFirefox, Safari, and Edge.\n\n## Contributing\n\nSee the [contributing] document. Thank you, [contributors]!\n\n  [contributing]: CONTRIBUTING.md\n  [contributors]: https:\u002F\u002Fgithub.com\u002Fthoughtbot\u002Fbourbon\u002Fgraphs\u002Fcontributors\n\n## License\n\nBourbon is copyright © 2011 [thoughtbot, inc.][thoughtbot] It is free\nsoftware, and may be redistributed under the terms specified in the [license].\n\n  [license]: LICENSE.md\n\n\u003C!-- START \u002Ftemplates\u002Ffooter.md -->\n## About thoughtbot\n\n![thoughtbot](https:\u002F\u002Fthoughtbot.com\u002Fthoughtbot-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:\u002F\u002Fthoughtbot.com\u002Fcommunity?utm_source=github\n[hire]: https:\u002F\u002Fthoughtbot.com\u002Fhire-us?utm_source=github\n\n\n\u003C!-- END \u002Ftemplates\u002Ffooter.md -->\n\n[thoughtbot]: https:\u002F\u002Fthoughtbot.com?utm_source=github\n","Bourbon 是一个轻量级的 Sass 工具集，旨在提高样式表编写效率。该项目提供了一系列 Sass 混合宏和函数，帮助开发者更高效地编写 CSS 代码。Bourbon 不依赖任何外部库，完全基于纯 Sass 构建，并且注重代码的可读性，确保开发者能够轻松理解和维护。此外，Bourbon 安装后不会产生额外输出，也不会对项目的视觉风格施加影响，非常适合需要精简、高效 CSS 开发流程的项目，尤其是在 Ruby on Rails 应用中使用。不过需要注意的是，自2024年9月13日起，Bourbon 已被官方弃用，推荐开发者转向现代原生 CSS 特性。","2026-06-11 03:13:34","top_language"]