{"id":15171894,"url":"https://github.com/postcss/postcss-color-rebeccapurple","last_synced_at":"2025-10-01T06:32:07.474Z","repository":{"id":21237041,"uuid":"24552373","full_name":"postcss/postcss-color-rebeccapurple","owner":"postcss","description":"PostCSS plugin to transform rebeccapurple color to rgb()","archived":true,"fork":false,"pushed_at":"2022-02-18T13:02:00.000Z","size":140,"stargazers_count":62,"open_issues_count":0,"forks_count":5,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-10-29T13:49:56.606Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc0-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/postcss.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-09-28T06:45:42.000Z","updated_at":"2023-04-18T15:39:35.000Z","dependencies_parsed_at":"2022-09-09T04:50:15.087Z","dependency_job_id":null,"html_url":"https://github.com/postcss/postcss-color-rebeccapurple","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/postcss%2Fpostcss-color-rebeccapurple","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/postcss%2Fpostcss-color-rebeccapurple/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/postcss%2Fpostcss-color-rebeccapurple/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/postcss%2Fpostcss-color-rebeccapurple/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/postcss","download_url":"https://codeload.github.com/postcss/postcss-color-rebeccapurple/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234764141,"owners_count":18882978,"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":[],"created_at":"2024-09-27T09:21:13.589Z","updated_at":"2025-10-01T06:32:07.198Z","avatar_url":"https://github.com/postcss.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e⚠️ PostCSS Color RebeccaPurple was moved to \u003ca href=\"https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-rebeccapurple\"\u003e@csstools/postcss-plugins\u003c/a\u003e. ⚠️ \u003cbr\u003e\n\u003ca href=\"https://github.com/csstools/postcss-plugins/discussions/75\"\u003eRead the announcement\u003c/a\u003e\u003c/div\u003e\n\n# PostCSS RebeccaPurple [\u003cimg src=\"https://postcss.github.io/postcss/logo.svg\" alt=\"PostCSS\" width=\"90\" height=\"90\" align=\"right\"\u003e][postcss]\n\n[\u003cimg alt=\"npm version\" src=\"https://img.shields.io/npm/v/postcss-color-rebeccapurple.svg\" height=\"20\"\u003e][npm-url]\n[\u003cimg alt=\"CSS Standard Status\" src=\"https://cssdb.org/images/badges/rebeccapurple-color.svg\" height=\"20\"\u003e][css-url]\n[\u003cimg alt=\"Build Status\" src=\"https://github.com/postcss/postcss-color-rebeccapurple/workflows/test/badge.svg\" height=\"20\"\u003e][cli-url]\n[\u003cimg alt=\"Support Chat\" src=\"https://img.shields.io/badge/support-chat-blue.svg\" height=\"20\"\u003e][git-url]\n\n[PostCSS RebeccaPurple] lets you use the `rebeccapurple` color keyword in CSS.\n\n```pcss\n.heading {\n  color: rebeccapurple;\n}\n\n/* becomes */\n\n.heading {\n  color: #639;\n}\n```\n\n[!['Can I use' table](https://caniuse.bitsofco.de/image/css-rebeccapurple.png)](https://caniuse.com/#feat=css-rebeccapurple)\n\n## About the `rebeccapurple` keyword\n\nIn 2014, Rebecca Alison Meyer, the daughter of [Eric A. Meyer](https://en.wikipedia.org/wiki/Eric_A._Meyer), an American web design consultant best known for his advocacy work on behalf of CSS, passed away of a brain tumor at six years of age.\n\nIn her memory, the hex color `#663399` is named `rebeccapurple` and [added to the CSS Colors list](https://lists.w3.org/Archives/Public/www-style/2014Jun/0312.html).\n\n## Usage\n\nAdd [PostCSS RebeccaPurple] to your project:\n\n```bash\nnpm install postcss-color-rebeccapurple --save-dev\n```\n\nUse **PostCSS RebeccaPurple** to process your CSS:\n\n```js\nconst postcssRebeccaPurple = require('postcss-color-rebeccapurple');\n\npostcssRebeccaPurple.process(YOUR_CSS /*, processOptions, pluginOptions */);\n```\n\nOr use it as a [PostCSS] plugin:\n\n```js\nconst postcss = require('postcss');\nconst postcssRebeccaPurple = require('postcss-color-rebeccapurple');\n\npostcss([\n  postcssRebeccaPurple(/* pluginOptions */)\n]).process(YOUR_CSS /*, processOptions */);\n```\n\n**PostCSS RebeccaPurple** runs in all Node environments, with special instructions for:\n\n| [Node](INSTALL.md#node) | [PostCSS CLI](INSTALL.md#postcss-cli) | [Webpack](INSTALL.md#webpack) | [Create React App](INSTALL.md#create-react-app) | [Gulp](INSTALL.md#gulp) | [Grunt](INSTALL.md#grunt) |\n| --- | --- | --- | --- | --- | --- |\n\n\n### preserve\n\nThe `preserve` option determines whether the original `rebeccapurple` keyword\nis preserved. By default, it is not preserved.\n\n```js\npostcssRebeccaPurple({ preserve: true })\n```\n\n```pcss\n.heading {\n  color: rebeccapurple;\n}\n\n/* becomes */\n\n.heading {\n  color: #639;\n  color: rebeccapurple;\n}\n```\n\n[cli-url]: https://github.com/postcss/postcss-color-rebeccapurple/actions/workflows/test.yml?query=workflow/test\n[css-url]: https://cssdb.org/#rebeccapurple-color\n[git-url]: https://gitter.im/postcss/postcss\n[npm-url]: https://www.npmjs.com/package/postcss-color-rebeccapurple\n\n[PostCSS]: https://github.com/postcss/postcss\n[PostCSS RebeccaPurple]: https://github.com/postcss/postcss-color-rebeccapurple\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpostcss%2Fpostcss-color-rebeccapurple","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpostcss%2Fpostcss-color-rebeccapurple","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpostcss%2Fpostcss-color-rebeccapurple/lists"}