{"_id":"postcss-color-mod-function","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"keywords":["postcss","css","postcss-plugin","colors","colours","modifications","mods","adjusters","adjustments","csswg","rgba","hsla","white","black","red","green","blue","alpha","hue","saturation","lightness","whiteness","blackness","tint","shade","blenda","contrast"],"dist-tags":{"latest":"4.1.1"},"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"description":"Modify colors using the color-mod() function in CSS","readme":"# PostCSS color-mod() Function [<img src=\"https://postcss.github.io/postcss/logo.svg\" alt=\"PostCSS Logo\" width=\"90\" height=\"90\" align=\"right\">][postcss]\n\n[![NPM Version][npm-img]][npm-url]\n[![Test](https://github.com/csstools/postcss-color-mod-function/actions/workflows/test.yml/badge.svg)](https://github.com/csstools/postcss-color-mod-function/actions/workflows/test.yml)\n\n[PostCSS color-mod() Function] lets you modify colors using the `color-mod()`\nfunction in CSS, following the outdated version of [CSS Color Module Level 4] specification (05 July 2016).\n\n**⚠️ `color-mod()` has been removed from [Color Module Level 4 specification](https://www.w3.org/TR/css-color-4/#changes-from-20160705). ([Here's why](https://github.com/w3c/csswg-drafts/commit/034b063697c3dadf144504f52e0858a79cd84414))**\n\n```pcss\n:root {\n  --brand-red:      color-mod(yellow blend(red 50%));\n  --brand-red-hsl:  color-mod(yellow blend(red 50% hsl));\n  --brand-red-hwb:  color-mod(yellow blend(red 50% hwb));\n  --brand-red-dark: color-mod(red blackness(20%));\n}\n\n/* becomes */\n\n:root {\n  --brand-red:      rgb(255, 127.5, 0);\n  --brand-red-hsl:  rgb(255, 127.5, 255);\n  --brand-red-hwb:  rgb(255, 127.5, 0);\n  --brand-red-dark: rgb(204, 0, 0);\n}\n\n/* or, using stringifier(color) { return color.toString() } */\n\n:root {\n  --brand-red:      rgb(100% 50% 0% / 100%);\n  --brand-red-hsl:  hsl(30 100% 50% / 100%);\n  --brand-red-hwb:  hwb(30 0% 0% / 100%);\n  --brand-red-dark: hwb(0 0% 20% / 100%);\n}\n```\n\n### Supported Colors\n\nThe `color-mod()` function accepts `rgb()`, legacy comma-separated `rgb()`,\n`rgba()`, `hsl()`, legacy comma-separated `hsl()`, `hsla()`, `hwb()`, and\n`color-mod()` colors, as well as 3, 4, 6, and 8 digit hex colors, and named\ncolors without the need for additional plugins.\n\nImplemention details are available in\n[the specification](https://www.w3.org/TR/2016/WD-css-color-4-20160705/#funcdef-color-mod).\n\n### Supported Color Adjusters\n\nThe `color-mod()` function accepts `red()`, `green()`, `blue()`, `a()` /\n`alpha()`, `rgb()`, `h()` / `hue()`, `s()` / `saturation()`, `l()` /\n`lightness()`, `w()` / `whiteness()`, `b()` / `blackness()`, `tint()`,\n`shade()`, `blend()`, `blenda()`, and `contrast()` color adjusters.\n\nImplemention details are available in\n[the specification](https://www.w3.org/TR/css-color-4/#typedef-color-adjuster).\n\n### Supported Variables\n\nBy default, `var()` variables will be used if their corresponding Custom\nProperties are found in a `:root` rule, or if a fallback value is specified.\n\n## Usage\n\nAdd [PostCSS color-mod() Function] to your project:\n\n```bash\nnpm install postcss postcss-color-mod-function --save-dev\n```\n\nUse [PostCSS color-mod() Function] to process your CSS:\n\n```js\nconst postcssColorMod = require('postcss-color-mod-function');\n\npostcssColorMod.process(YOUR_CSS /*, processOptions, pluginOptions */);\n```\n\nOr use it as a [PostCSS] plugin:\n\n```js\nconst postcss = require('postcss');\nconst postcssColorMod = require('postcss-color-mod-function');\n\npostcss([\n  postcssColorMod(/* pluginOptions */)\n]).process(YOUR_CSS /*, processOptions */);\n```\n\n[PostCSS color-mod() Function] 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## Options\n\n### stringifier\n\nThe `stringifier` option defines how transformed colors will be produced in CSS.\nBy default, legacy `rgb()` and `rgba()` colors are produced, but this can be\neasily updated to support [CSS Color Module Level 4 colors] colors.\n\n```js\nimport postcssColorMod from 'postcss-color-mod-function';\n\npostcssColorMod({\n  stringifier(color) {\n    return color.toString(); // use CSS Color Module Level 4 colors (rgb, hsl, hwb)\n  }\n});\n```\n\nFuture major releases of [PostCSS color-mod() Function] may reverse this\nfunctionality so that CSS Color Module Level 4 colors are produced by default.\n\n### unresolved\n\nThe `unresolved` option defines how unresolved functions and arguments should\nbe handled. The available options are `throw`, `warn`, and `ignore`. The\ndefault option is to `throw`.\n\nIf `ignore` is used, the `color-mod()` function will remain unchanged.\n\n```js\nimport postcssColorMod from 'postcss-color-mod-function';\n\npostcssColorMod({\n  unresolved: 'ignore' // ignore unresolved color-mod() functions\n});\n```\n\n### transformVars\n\nThe `transformVars` option defines whether `var()` variables used within\n`color-mod()` should be transformed into their corresponding Custom Properties\navailable in `:root`, or their fallback value if it is specified. By default,\n`var()` variables will be transformed.\n\nHowever, because these transformations occur at build time, they cannot be\nconsidered accurate. Accurately resolving cascading variables relies on\nknowledge of the living DOM tree.\n\n### importFrom\n\nThe `importFrom` option allows you to import variables from other sources,\nwhich might be CSS, JS, and JSON files, and directly passed objects.\n\n```js\npostcssColorMod({\n  importFrom: 'path/to/file.css' // :root { --brand-dark: blue; --brand-main: var(--brand-dark); }\n});\n```\n\n```pcss\n.brand-faded {\n  color: color-mod(var(--brand-main) a(50%));\n}\n\n/* becomes */\n\n.brand-faded {\n  color: rgba(0, 0, 255, .5);\n}\n```\n\nMultiple files can be passed into this option, and they will be parsed in the\norder they were received. JavaScript files, JSON files, and objects will need\nto namespace custom properties under a `customProperties` or\n`custom-properties` key.\n\n```js\npostcssColorMod({\n  importFrom: [\n    'path/to/file.css',   // :root { --brand-dark: blue; --brand-main: var(--brand-dark); }\n    'and/then/this.js',   // module.exports = { customProperties: { '--brand-dark': 'blue', '--brand-main': 'var(--brand-dark)' } }\n    'and/then/that.json', // { \"custom-properties\": { \"--brand-dark\": \"blue\", \"--brand-main\": \"var(--brand-dark)\" } }\n    {\n      customProperties: {\n        '--brand-dark': 'blue',\n        '--brand-main': 'var(--brand-dark)'\n      }\n    }\n  ]\n});\n```\n\nVariables may reference other variables, and this plugin will attempt to\nresolve them. If `transformVars` is set to `false` then `importFrom` will not\nbe used.\n\n[npm-img]: https://img.shields.io/npm/v/postcss-color-mod-function.svg\n[npm-url]: https://www.npmjs.com/package/postcss-color-mod-function\n\n[CSS Color Module Level 4]: https://www.w3.org/TR/2016/WD-css-color-4-20160705/#funcdef-color-mod\n[Gulp PostCSS]: https://github.com/postcss/gulp-postcss\n[Grunt PostCSS]: https://github.com/nDmitry/grunt-postcss\n[PostCSS]: https://github.com/postcss/postcss\n[PostCSS color-mod() Function]: https://github.com/csstools/postcss-color-mod-function\n","repository":{"type":"git","url":"git+https://github.com/jonathantneal/postcss-color-mod-function.git"},"bugs":{"url":"https://github.com/csstools/postcss-color-mod-function/issues"},"license":"CC0-1.0","versions":{"2.1.0":{"name":"postcss-color-mod-function","version":"2.1.0","keywords":["postcss","css","postcss-plugin","colors","colours","modifications","mods","adjusters","adjustments","csswg","rgba","hsla","white","black","red","green","blue","alpha","hue","saturation","lightness","whiteness","blackness","tint","shade","blenda","contrast"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-mod-function@2.1.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-color-mod-function#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-color-mod-function/issues"},"dist":{"shasum":"51d4d18c17b648b5fc7b9f3dd6fa9075d17e48b1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-mod-function/-/postcss-color-mod-function-2.1.0.tgz","integrity":"sha512-AYlGFXE5+Y0VcuTgIdN9QjkTkBjIovId10rhm7ayqmBLHkwao4lsc2m6SQH159jWu1XRNEM2C6Oudtk8TV9Vqw==","signatures":[{"sig":"MEYCIQD1ccijF1GX/vNC+xYL+7wGe1fHd4T5MZIkCH1O0O9KPgIhAI3ZYbFoHUqopZXmeaCIf6PVJJRpMcoUhQILN4MW8DoL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.bundle.js","files":["index.js","index.bundle.js","lib"],"module":"index.js","engines":{"node":">=4.0.0"},"gitHead":"3e32e9a097e61969ace4bc1b181d338b8b551ac4","scripts":{"test":"echo 'Running tests...'; npm run test:ec && npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:ec":"echint --ignore index.bundle.js test","test:js":"eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-color-mod-function.git","type":"git"},"_npmVersion":"5.6.0","description":"Modify colors using the color-mod() function in CSS","directories":{},"_nodeVersion":"9.3.0","dependencies":{"postcss":"^6.0","postcss-values-parser":"^1.3.1"},"eslintConfig":{"rules":{"max-params":[2,5]},"parser":"babel-eslint","extends":"dev"},"devDependencies":{"echint":"^4.0","eslint":"^4.16","rollup":"^0.54","babel-core":"^6.26","pre-commit":"^1.2","babel-eslint":"^8.2","postcss-tape":"2.2","babel-preset-env":"^1.6","eslint-config-dev":"2.0","rollup-plugin-babel":"^3.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-mod-function-2.1.0.tgz_1516503913015_0.5745441587641835","host":"s3://npm-registry-packages"}},"4.1.1":{"name":"postcss-color-mod-function","version":"4.1.1","description":"Modify colors using the color-mod() function in CSS","author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","repository":{"type":"git","url":"git+https://github.com/jonathantneal/postcss-color-mod-function.git"},"homepage":"https://github.com/csstools/postcss-color-mod-function#readme","bugs":{"url":"https://github.com/csstools/postcss-color-mod-function/issues"},"main":"index.cjs.js","module":"index.es.mjs","scripts":{"prepublishOnly":"npm test","pretest":"npm run build","build":"rollup -c .rollup.mjs --silent","test":"postcss-tape"},"engines":{"node":">= 18"},"dependencies":{"@csstools/convert-colors":"^1.4.0","postcss-value-parser":"^4.2.0"},"devDependencies":{"postcss":"^8.2.15","postcss-tape":"^6.0.1","rollup":"^4.24.0"},"peerDependencies":{"postcss":"^8.2.15"},"keywords":["postcss","css","postcss-plugin","colors","colours","modifications","mods","adjusters","adjustments","csswg","rgba","hsla","white","black","red","green","blue","alpha","hue","saturation","lightness","whiteness","blackness","tint","shade","blenda","contrast"],"_id":"postcss-color-mod-function@4.1.1","gitHead":"e442090f9f8d74b4791283431d989b63ddb67380","_nodeVersion":"20.17.0","_npmVersion":"10.8.3","dist":{"integrity":"sha512-pX35vgWh0c5gqYd/a5baiTr329GyEt56KBldQIEZwOi9V2eXC+9+e7yjnIKqjidHKxzstEfBJEbOXma8Ang33g==","shasum":"8af2171aec20035416a0c79fe3e29e14e026689c","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-mod-function/-/postcss-color-mod-function-4.1.1.tgz","fileCount":7,"unpackedSize":343353,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG9OnJ+PwfssnJReU1NkmoVknCsPWPwGjeWGSKNWPVQCAiBDzyQ/5ypFBe1HeDyEckG9VrLO33iIM2swsWMffWNYBQ=="}]},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"directories":{},"maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/postcss-color-mod-function_4.1.1_1729327023456_0.573853321843445"},"_hasShrinkwrap":false},"2.4.2":{"name":"postcss-color-mod-function","version":"2.4.2","keywords":["postcss","css","postcss-plugin","colors","colours","modifications","mods","adjusters","adjustments","csswg","rgba","hsla","white","black","red","green","blue","alpha","hue","saturation","lightness","whiteness","blackness","tint","shade","blenda","contrast"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-mod-function@2.4.2","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-color-mod-function#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-color-mod-function/issues"},"dist":{"shasum":"bdf408f152bc3201517a4c38b7eb5cd2996114fb","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-mod-function/-/postcss-color-mod-function-2.4.2.tgz","fileCount":10,"integrity":"sha512-j9RM33ybsEJUvIc22Y5I4ucvSJVHMliiW0I34JDLV0gVdvCo7/Y+zW6QMBANj+M4VZJLmyGz2mafIK4Tb5GVyg==","signatures":[{"sig":"MEYCIQC2Zh4iIpjpTuktDiAjxTzFIHULa/4Ke+XKSptCAlDzcAIhAI7CtPgifVCtarvceFD2r0ivnPHznYJtLyUn1Qqq/KCC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":111465},"main":"index.bundle.js","files":["index.js","index.bundle.js","lib"],"module":"index.js","engines":{"node":">=4.0.0"},"gitHead":"39f669e5be337dd72defb31bf461e808c07f1c91","scripts":{"test":"echo 'Running tests...'; npm run test:ec && npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:ec":"echint --ignore index.bundle.js test","test:js":"eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-color-mod-function.git","type":"git"},"_npmVersion":"5.6.0","description":"Modify colors using the color-mod() function in CSS","directories":{},"_nodeVersion":"9.6.1","dependencies":{"postcss":"^6.0.19","postcss-values-parser":"^1.3.2","@csstools/convert-colors":"^1.4.0"},"eslintConfig":{"rules":{"max-params":[2,5]},"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"echint":"^4.0.1","eslint":"^4.18.1","rollup":"^0.56.3","babel-core":"^6.26.0","pre-commit":"^1.2.2","babel-eslint":"^8.2.2","postcss-tape":"^2.2.0","babel-preset-env":"^1.6.1","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^3.0.3"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-mod-function_2.4.2_1519711220443_0.4666398215304848","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"postcss-color-mod-function","version":"4.0.0","keywords":["postcss","css","postcss-plugin","colors","colours","modifications","mods","adjusters","adjustments","csswg","rgba","hsla","white","black","red","green","blue","alpha","hue","saturation","lightness","whiteness","blackness","tint","shade","blenda","contrast"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-mod-function@4.0.0","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-color-mod-function#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-color-mod-function/issues"},"dist":{"shasum":"845768053b93445e755be91158014f731c168607","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-mod-function/-/postcss-color-mod-function-4.0.0.tgz","fileCount":7,"integrity":"sha512-uBP6fWiFxGAwpMyHI0csBzCurlLcj2gTipF/gJyMbb0lt4aEI6doIrOcPHPn7RFTL5CdMfT7bO8sxbPMVBhmNw==","signatures":[{"sig":"MEUCICNu5q4i5hLNDIEL24V6XnpOd4jz3/OrjSJkb+kgtbHGAiEAt0ViLbGXG5uk3X/kALkRvCnwyZl0bHXCDWKl1lRkwC8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":340895},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">= 18"},"gitHead":"008f01340a97619739b0e42eac621455f76d9060","scripts":{"test":"postcss-tape","build":"rollup -c .rollup.mjs --silent","pretest":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-color-mod-function.git","type":"git"},"_npmVersion":"10.8.3","description":"Modify colors using the color-mod() function in CSS","directories":{},"_nodeVersion":"20.17.0","dependencies":{"postcss-values-parser":"^2.0.0","@csstools/convert-colors":"^1.4.0"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"^4.24.0","postcss":"^8.2.15","postcss-tape":"^6.0.1","@rollup/plugin-babel":"^6.0.4"},"peerDependencies":{"postcss":"^8.2.15"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-mod-function_4.0.0_1729252397559_0.6927492978977401","host":"s3://npm-registry-packages"}},"2.4.3":{"name":"postcss-color-mod-function","version":"2.4.3","keywords":["postcss","css","postcss-plugin","colors","colours","modifications","mods","adjusters","adjustments","csswg","rgba","hsla","white","black","red","green","blue","alpha","hue","saturation","lightness","whiteness","blackness","tint","shade","blenda","contrast"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-mod-function@2.4.3","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-color-mod-function#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-color-mod-function/issues"},"dist":{"shasum":"14a97f5b17a5f19396e9dea7ffcb5be732592baf","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-mod-function/-/postcss-color-mod-function-2.4.3.tgz","fileCount":10,"integrity":"sha512-TEATRHN1m2+vM4efwRoPyrAQTbBA4xgx1jSMPv64oLcwVFC4qr6d4o9DAD5LxygIMeBBBugQHvXoSIM+87NaFQ==","signatures":[{"sig":"MEUCIFrgK+bRmdob9DfSfxrqfefrIctPf9W2D4FnF0nyzhT3AiEAgRWhudX6K37MnTFeUIHBMyU15ZfHNl1YbHIE3YgQo3g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":161813,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbUxy2CRA9TVsSAnZWagAAikkP/1eyWkRCOS8zI/7lJVKj\nJsLcS6XJkP6ryJErES5DCQHwd99K9wm5U/ph/fM8qK77/C1mtVmMjBLE8lPJ\nlI+E9DVV/6+wrFohAiKtU063xV/ToUx2DAFFLzEoFcPhrSa8q5CWLyCPAxji\nS6p+6NuKzbmt2JEn/zq5/ucpjEApxOrNDLek/VLbrOFO1bw14+itKDN5pyp8\n5rSadg7aJPUkZGeEvm4qNCWjpCa/z3dA/DrGnqMFDpiArhdFtcrpHqtv6/IT\net3ecEpxxoJlICTShoPVmxmAY/R5+6ZIySpEzKXQLqNxBYoK1inZRU/n09BI\nrG5J8WUGnlY3J5nwu9tnN2QEfiFWxrPfbojJASXeQL/EOm8VzCO8gRvbvJmw\nFd0Xxd6DmU+cAETS7jDhGd95+ejj7a2JLFrVHchId7AaoXzGs10lkEIEDsyz\nYWkguSDbjtYbH2wx/JqK6b8QLYYEnWl8gp3yaPKDRcrb8iR3nB93AfetZb7c\nHlJgAKF/tBIITxUm3iCNn5me9ugP+62WixB22PD9FqX7BDHTR2A/KqgtKPn8\n4mFzYjYuSWxiSYZyiXA/9buTxDI9fxe0t5Kqx0uQ0l7nQDoJzs32EVyuCSlS\n8TO/Bs6AHLPuvlqfzLHbO8gbKa27G9DiOiUsFe8DE4xiWyb/bKejIQmRUstP\nmHOr\r\n=b65+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","files":["index.cjs.js","index.es.js","lib"],"module":"index.es.js","engines":{"node":">=4.0.0"},"gitHead":"6ce644fa93fe7a3c8938ff2c1d54906e0e608f8e","scripts":{"test":"echo 'Running tests...'; npm run test:ec && npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:ec":"echint --ignore index.bundle.js test","test:js":"eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-color-mod-function.git","type":"git"},"_npmVersion":"6.2.0","description":"Modify colors using the color-mod() function in CSS","directories":{},"_nodeVersion":"10.7.0","dependencies":{"postcss":"^6.0.23","postcss-values-parser":"^1.5.0","@csstools/convert-colors":"^1.4.0"},"eslintConfig":{"rules":{"max-params":[2,5]},"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"echint":"^4.0.1","eslint":"^5.2.0","rollup":"^0.63.4","babel-core":"^6.26.3","pre-commit":"^1.2.2","babel-eslint":"^8.2.6","postcss-tape":"^2.2.0","babel-preset-env":"^1.7.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^3.0.7"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-mod-function_2.4.3_1532173494821_0.014670850412566994","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"postcss-color-mod-function","version":"4.1.0","keywords":["postcss","css","postcss-plugin","colors","colours","modifications","mods","adjusters","adjustments","csswg","rgba","hsla","white","black","red","green","blue","alpha","hue","saturation","lightness","whiteness","blackness","tint","shade","blenda","contrast"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-mod-function@4.1.0","maintainers":[{"name":"romainmenke","email":"romainmenke@gmail.com"},{"name":"alaguna","email":"sombragriselros@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-color-mod-function#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-color-mod-function/issues"},"dist":{"shasum":"61ea8f55328510fe48e2a41a8807b68509f72634","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-mod-function/-/postcss-color-mod-function-4.1.0.tgz","fileCount":7,"integrity":"sha512-3OwwvrAopWai7uAYmH2uhiop8gYfAi3J8U5t4efN3bWERgzBsQwvw7kS3qavvxDtSJFp6oxydDzqgbsPGpkRvg==","signatures":[{"sig":"MEQCIE4nUv8oRcJXI8lcHYXQH6STojwpAhTIVPscNgKjA1bkAiBQeg2HjJ+nSGzRx2I7xMuPrqnUsJAfLq4gDg3PxLDTnQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":343690},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">= 18"},"gitHead":"008f01340a97619739b0e42eac621455f76d9060","scripts":{"test":"postcss-tape","build":"rollup -c .rollup.mjs --silent","pretest":"npm run build","prepublishOnly":"npm test"},"_npmUser":{"name":"romainmenke","email":"romainmenke@gmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-color-mod-function.git","type":"git"},"_npmVersion":"10.8.3","description":"Modify colors using the color-mod() function in CSS","directories":{},"_nodeVersion":"20.17.0","dependencies":{"postcss-value-parser":"^4.2.0","@csstools/convert-colors":"^1.4.0"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"^4.24.0","postcss":"^8.2.15","postcss-tape":"^6.0.1"},"peerDependencies":{"postcss":"^8.2.15"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-mod-function_4.1.0_1729261161834_0.9932935084487258","host":"s3://npm-registry-packages"}},"2.4.0":{"name":"postcss-color-mod-function","version":"2.4.0","keywords":["postcss","css","postcss-plugin","colors","colours","modifications","mods","adjusters","adjustments","csswg","rgba","hsla","white","black","red","green","blue","alpha","hue","saturation","lightness","whiteness","blackness","tint","shade","blenda","contrast"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-mod-function@2.4.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-color-mod-function#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-color-mod-function/issues"},"dist":{"shasum":"c87ad0aa19909f00debd29fe0c30d9f5733b2af2","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-mod-function/-/postcss-color-mod-function-2.4.0.tgz","fileCount":10,"integrity":"sha512-mKW8PtBZeX9g1SzZ4rBiJJplVlU5lfx+y5m8jZEnKVKpeknoLnncciv+obmQCkYkdqX5NrWh/Q0C2RK9t1BATA==","signatures":[{"sig":"MEUCIQDtfS6eXxbA64IlhJgUkDsHbfsbG795nN09/klYRzzpqgIgQmLBvpu2ZiQdQgAnLA2atkGpRNUbxTGEZ+QJ9aELiHI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":110550},"main":"index.bundle.js","files":["index.js","index.bundle.js","lib"],"module":"index.js","engines":{"node":">=4.0.0"},"gitHead":"9ce4b29add4497dcd4fd606ce266aa2fea1693b6","scripts":{"test":"echo 'Running tests...'; npm run test:ec && npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:ec":"echint --ignore index.bundle.js test","test:js":"eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-color-mod-function.git","type":"git"},"_npmVersion":"5.6.0","description":"Modify colors using the color-mod() function in CSS","directories":{},"_nodeVersion":"9.5.0","dependencies":{"postcss":"^6.0","postcss-values-parser":"^1.3","@csstools/convert-colors":"^1.4"},"eslintConfig":{"rules":{"max-params":[2,5]},"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"echint":"^4.0","eslint":"^4.17","rollup":"^0.56","babel-core":"^6.26","pre-commit":"^1.2","babel-eslint":"^8.2","postcss-tape":"2.2","babel-preset-env":"^1.6","eslint-config-dev":"2.0","rollup-plugin-babel":"^3.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-mod-function_2.4.0_1518787866227_0.2470667441128418","host":"s3://npm-registry-packages"}},"2.4.1":{"name":"postcss-color-mod-function","version":"2.4.1","keywords":["postcss","css","postcss-plugin","colors","colours","modifications","mods","adjusters","adjustments","csswg","rgba","hsla","white","black","red","green","blue","alpha","hue","saturation","lightness","whiteness","blackness","tint","shade","blenda","contrast"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-mod-function@2.4.1","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-color-mod-function#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-color-mod-function/issues"},"dist":{"shasum":"d3581abc1df5dea7b81908d1c57f134840296be7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-mod-function/-/postcss-color-mod-function-2.4.1.tgz","fileCount":10,"integrity":"sha512-FlBOEeYx+6p8WQNrlGJs+AMu9qfzKuLtmEzLWrOqCeEi06niDmnSQJ5ZXGCLpScmybM9O0WuFub8LapsOMjUfQ==","signatures":[{"sig":"MEYCIQCpcNW3bT+FILQblB47Z2Tsn7MHkwcseK9uhA6Do0TXQAIhALOQw0h00bXmqhTHMudUDoqhvvqnrLnMTf5/qJA2jRD3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":110748},"main":"index.bundle.js","files":["index.js","index.bundle.js","lib"],"module":"index.js","engines":{"node":">=4.0.0"},"gitHead":"7297ddb0e2e4bdbed14a91702ed58ac52979d9dd","scripts":{"test":"echo 'Running tests...'; npm run test:ec && npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:ec":"echint --ignore index.bundle.js test","test:js":"eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-color-mod-function.git","type":"git"},"_npmVersion":"5.6.0","description":"Modify colors using the color-mod() function in CSS","directories":{},"_nodeVersion":"9.5.0","dependencies":{"postcss":"^6.0","postcss-values-parser":"^1.3","@csstools/convert-colors":"^1.4"},"eslintConfig":{"rules":{"max-params":[2,5]},"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"echint":"^4.0","eslint":"^4.18","rollup":"^0.56","babel-core":"^6.26","pre-commit":"^1.2","babel-eslint":"^8.2","postcss-tape":"2.2","babel-preset-env":"^1.6","eslint-config-dev":"2.0","rollup-plugin-babel":"^3.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-mod-function_2.4.1_1519226962215_0.7787220695385872","host":"s3://npm-registry-packages"}},"2.2.0":{"name":"postcss-color-mod-function","version":"2.2.0","keywords":["postcss","css","postcss-plugin","colors","colours","modifications","mods","adjusters","adjustments","csswg","rgba","hsla","white","black","red","green","blue","alpha","hue","saturation","lightness","whiteness","blackness","tint","shade","blenda","contrast"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-mod-function@2.2.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-color-mod-function#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-color-mod-function/issues"},"dist":{"shasum":"7b2c41f13269aaf99f076f081e45fa3a886bf4d9","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-mod-function/-/postcss-color-mod-function-2.2.0.tgz","integrity":"sha512-OPrQft1iFXqUaLWgf2S2VTKwqkEF36MuqQ3SnhcIDrDPWTa1/OKINtubjWc/Eqfpg2IyR2WJXsih5T90u1GbBw==","signatures":[{"sig":"MEUCIQClkRWmhHW288cuOl4r0O7A2pX8KGZmDclBvPJllpx0FwIgECekTtoZaB3le0hndcVcfueuRzel5d6oH2iWUJY46Mg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.bundle.js","_from":".","files":["index.js","index.bundle.js","lib"],"module":"index.js","_shasum":"7b2c41f13269aaf99f076f081e45fa3a886bf4d9","engines":{"node":">=4.0.0"},"gitHead":"7133e87af06fbf79a3aab76dbafd607b52d74679","scripts":{"test":"echo 'Running tests...'; npm run test:ec && npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:ec":"echint --ignore index.bundle.js test","test:js":"eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-color-mod-function.git","type":"git"},"_npmVersion":"2.14.2","description":"Modify colors using the color-mod() function in CSS","directories":{},"_nodeVersion":"4.0.0","dependencies":{"postcss":"^6.0","postcss-values-parser":"^1.3","@csstools/convert-colors":"^1.1"},"eslintConfig":{"rules":{"max-params":[2,5]},"parser":"babel-eslint","extends":"dev"},"devDependencies":{"echint":"^4.0","eslint":"^4.16","rollup":"^0.54","babel-core":"^6.26","pre-commit":"^1.2","babel-eslint":"^8.2","postcss-tape":"2.2","babel-preset-env":"^1.6","eslint-config-dev":"2.0","rollup-plugin-babel":"^3.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-mod-function-2.2.0.tgz_1516640560407_0.11213435046374798","host":"s3://npm-registry-packages"}},"2.3.0":{"name":"postcss-color-mod-function","version":"2.3.0","keywords":["postcss","css","postcss-plugin","colors","colours","modifications","mods","adjusters","adjustments","csswg","rgba","hsla","white","black","red","green","blue","alpha","hue","saturation","lightness","whiteness","blackness","tint","shade","blenda","contrast"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-mod-function@2.3.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-color-mod-function#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-color-mod-function/issues"},"dist":{"shasum":"56ba67d7fadccf190795efbc529b015c8fa68fdc","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-mod-function/-/postcss-color-mod-function-2.3.0.tgz","integrity":"sha512-gYQ88GfsIRSqzG+ZrlJvo6H59n+fxC18kETzihdCK0JSJuzQNOI3nPXb+R7qG1whK6ePL+zaBApcCQkmmax3tA==","signatures":[{"sig":"MEUCIH69OFyK0NizXkExRVX4X6fFeh4YN946xMhZGcNT8j2hAiEA7lVlKeBmZVxnjaxct/1u14q/6WOGHnCkRJFaWJ0V8lw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.bundle.js","files":["index.js","index.bundle.js","lib"],"module":"index.js","engines":{"node":">=4.0.0"},"gitHead":"65077c08650f110bab797e88f25d15908b567ce1","scripts":{"test":"echo 'Running tests...'; npm run test:ec && npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:ec":"echint --ignore index.bundle.js test","test:js":"eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-color-mod-function.git","type":"git"},"_npmVersion":"5.6.0","description":"Modify colors using the color-mod() function in CSS","directories":{},"_nodeVersion":"9.3.0","dependencies":{"postcss":"^6.0","postcss-values-parser":"^1.3","@csstools/convert-colors":"^1.3"},"eslintConfig":{"rules":{"max-params":[2,5]},"parser":"babel-eslint","extends":"dev"},"devDependencies":{"echint":"^4.0","eslint":"^4.16","rollup":"^0.55","babel-core":"^6.26","pre-commit":"^1.2","babel-eslint":"^8.2","postcss-tape":"2.2","babel-preset-env":"^1.6","eslint-config-dev":"2.0","rollup-plugin-babel":"^3.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-mod-function-2.3.0.tgz_1516937437244_0.8661445584148169","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"postcss-color-mod-function","version":"3.0.0","keywords":["postcss","css","postcss-plugin","colors","colours","modifications","mods","adjusters","adjustments","csswg","rgba","hsla","white","black","red","green","blue","alpha","hue","saturation","lightness","whiteness","blackness","tint","shade","blenda","contrast"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-mod-function@3.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-color-mod-function#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-color-mod-function/issues"},"dist":{"shasum":"e0993ddd68488fa2b060135caad4fee399bf7f7f","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-mod-function/-/postcss-color-mod-function-3.0.0.tgz","fileCount":8,"integrity":"sha512-anmDjx6y/sX4PqEj2yaTCXtCKcr5wz7GHlSPZ5kol+grTYIVO87Ks7o5g7iMtkJhVqkkdVaL7GoH7ESuhg8RYQ==","signatures":[{"sig":"MEUCIHPFn/pv1/OD4CJxzvamjmk9zzzcZcwJdl7o2jQ0Oes6AiEA6yaFNlLX+muzwizF9aF+fsCWFYzkwfH+gExskfx1il8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":346168,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbn/bmCRA9TVsSAnZWagAAE+QQAJyIlrsVD7g81mG43f0J\nKwW/QRtQ09rjnwvj2tKGvf24jCGKq3ir3lOjsHjG0rYnQUjlg74U7ibGn8H3\n6NduUtTjlHdvaMaHpKjuaDsQwjCd6h11wNXb5WU3Hpln4fkSs1FxmtI9cdOh\nQfa25zCZiyGC/BrPe5UeYkufcLf8t0MHWGgD/km7riEltRtYtXvM+hVSwI1R\nHWyUr7EvAhtGlgtvfcrYcMyNeRl4BBc/cATBamI2O6TCIX55tK6sQ15GnRf0\notHQKxbTqRTqvVgBzRjw/O8pPmwljkLlJk0XXSTZVKrraOmbLFM5z2XH/kFD\nOUmlfhvRgRyfCi2cF/bFoajMpq7bIQg/OFp6nCMHNdgVWJfmL2bCfIXfGFLQ\nd4gSEM9NZjEAG7k8G8828yDGaKPueR4keG0lKS/UqusPIGd4AzmV2MsYdfPk\nh6HnuA37Y/FGRkktt8GDJGhaNkxYgMGeXkV8eKx+8g/OzgfYPwC6QhbH/yqU\nVmHJyYdQpXqMJlRmohUuEf7JjvkyAdajbbOb6II6goklKOBNhBRIrHA0QUI7\nNLsO9qF+k9yoVkN0O0BxbjxQUT+MIhAGrlKhwDlDr6XHnBDX6Um2Sp0O9he7\nfkGp50Wk4vB1KzNNXA/3HYeRAlOYhDuNwBk1wXu9wuYFGWcGgvF9aMsrLi9h\nS0tF\r\n=DLy7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.js","engines":{"node":">=4.0.0"},"gitHead":"6a1a6fc6846b0cffc4e7d15d7e444c4f2bf01b9f","scripts":{"test":"echo 'Running tests...'; npm run test:ec && npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:ec":"echint --ignore index.bundle.js test","test:js":"eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-color-mod-function.git","type":"git"},"_npmVersion":"6.4.1","description":"Modify colors using the color-mod() function in CSS","directories":{},"_nodeVersion":"10.10.0","dependencies":{"postcss":"^7.0.2","postcss-values-parser":"^1.5.0","@csstools/convert-colors":"^1.4.0"},"eslintConfig":{"rules":{"max-params":[2,5]},"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"echint":"^4.0.1","eslint":"^5.6.0","rollup":"^0.66.0","pre-commit":"^1.2.2","@babel/core":"^7.0.1","babel-eslint":"^9.0.0","postcss-tape":"^2.2.0","@babel/preset-env":"^7.0.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^4.0.3","@babel/plugin-syntax-dynamic-import":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-mod-function_3.0.0_1537210086186_0.6159111699740354","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"postcss-color-mod-function","version":"3.0.1","keywords":["postcss","css","postcss-plugin","colors","colours","modifications","mods","adjusters","adjustments","csswg","rgba","hsla","white","black","red","green","blue","alpha","hue","saturation","lightness","whiteness","blackness","tint","shade","blenda","contrast"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-mod-function@3.0.1","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-color-mod-function#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-color-mod-function/issues"},"dist":{"shasum":"20d600e3014f38266261722ba9a36a2a9859efa7","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-mod-function/-/postcss-color-mod-function-3.0.1.tgz","fileCount":8,"integrity":"sha512-vv7nqa/OIs8VLQnytwaGV8BylX9PFJh67YN58wIevBw7fQ5Lu0AlFx+tJWzQ8Z/JGF++JRX37f05RiOVWHlV1A==","signatures":[{"sig":"MEUCIQDJipVRjVdtC7yzPzLF8YaqvUYGeJ2KgyxtPOHjQnJ1yQIgcZ8jLSbb+Yi4Iws9YvphX1/wCQc+JGlQuoGzFfu8qig=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":346328,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJboSbvCRA9TVsSAnZWagAAT+kP/iWX/uAEUiRzcXFdPx9f\nA8a8l5J+e7xhqm/HKGpaSiKArZDJWIfAaHKtYjpAiDsdAf+4X+jQDcpLrEbC\n9MnnNCCsPylZL+UeG87eqEdXsO4QsX+GNybYzvypMa2JsCMvoUpawTQk4pOI\nGyL1/SvZBFUrHVRTtDuzpT1tBqS/2pdO6/7K3wXuBSCUBjfn7TLv+1x/EX9q\nh0tBH8rWDn9aO0zg0wtCnLfb+1sYEEI+dwOGgqyJlq+Im/EdIEKydyNtX2/Z\nKYB0vTx2SciP6T4t3sjAccLbZdfRWYpFEFyiYXKXcb0vTLcJFueWvkqyqmyi\n/89NwkCFvTRnHe651T5TTnScyfY1Ephu66sL4a21Q2RKoB/N2Hrwya3mG7dk\nQ8m1iH4KnSU/QOz2Wt3hV81NpMT+RzUbAdjIKVxngJMFm9j24nEzPMNAtHLR\nElimO9Y0xfdj8YtYKe1qgSV0xolOUYOFm+YZwqDPg4awfCSA0OSqQ1a255gB\n5sn+w21YfrOOxieeeCZ8XrVoP7VmVdVMzEW+ODh09lUnUqkjOl4it5UeN7rW\nk441R4nPKgDbApwQEcy54qaKpg/CrSgxQ3NzewBZzyLOjaaKnPeE+pgcUOlo\nuhnoh8+tDf7+6OhT5IeDwZOl8iHljSj5VZRQayMONtEQi4l7VBNR5IkdFksG\nKj2h\r\n=tHxO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=4.0.0"},"gitHead":"ef00b00d4b7a453ce73a0320d52320638878a6bc","scripts":{"test":"echo 'Running tests...'; npm run test:ec && npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:ec":"echint --ignore index.bundle.js test","test:js":"eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-color-mod-function.git","type":"git"},"_npmVersion":"6.4.1","description":"Modify colors using the color-mod() function in CSS","directories":{},"_nodeVersion":"10.10.0","dependencies":{"postcss":"^7.0.2","postcss-values-parser":"^2.0.0","@csstools/convert-colors":"^1.4.0"},"eslintConfig":{"rules":{"max-params":[2,5]},"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"echint":"^4.0.1","eslint":"^5.6.0","rollup":"^0.66.0","pre-commit":"^1.2.2","@babel/core":"^7.1.0","babel-eslint":"^9.0.0","postcss-tape":"^2.2.0","@babel/preset-env":"^7.1.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^4.0.3","@babel/plugin-syntax-dynamic-import":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-mod-function_3.0.1_1537287918584_0.670866076315987","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"postcss-color-mod-function","version":"1.0.0","keywords":["postcss","css","postcss-plugin","colors","colours","modifications","mods","adjusters","adjustments","csswg","rgba","hsla","white","black","red","green","blue","alpha","hue","saturation","lightness","whiteness","blackness","tint","shade","blenda","contrast"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-mod-function@1.0.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-color-mod-function#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-color-mod-function/issues"},"dist":{"shasum":"b7643e5901fb63edbde0148a1db0b247053db0f1","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-mod-function/-/postcss-color-mod-function-1.0.0.tgz","integrity":"sha512-8tzOZZ/TljTQWdiziwDcZhL25cMqxXL+yT7pl3jivDh8B3rB4IKBKY0KoHR4rixosFlSnu2Ym1q8Nr5BctZF5A==","signatures":[{"sig":"MEQCIAxjir+21b51SpXXqJ+hJ5XsF0Meq0ZlcHjigeP/SzBGAiAYWT1/i5CN3mp8OJW2MX1BT7UnXEt+x9kKIBpju/CgrA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.bundle.js","files":["index.js","index.bundle.js","lib"],"module":"index.js","engines":{"node":">=4.0.0"},"gitHead":"604e99ae76f2df8d24428cbcde0885c386eaf7c5","scripts":{"test":"echo 'Running tests...'; npm run test:ec && npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:ec":"echint --ignore index.bundle.js test","test:js":"eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-color-mod-function.git","type":"git"},"_npmVersion":"5.6.0","description":"Modify colors using the color-mod() function in CSS","directories":{},"_nodeVersion":"9.3.0","dependencies":{"postcss":"^6.0","color-name":"^1.1.3","postcss-values-parser":"^1.3.1"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"devDependencies":{"echint":"^4.0","eslint":"^4.15","rollup":"^0.54","babel-core":"^6.26","pre-commit":"^1.2","babel-eslint":"^8.2","postcss-tape":"2.2","babel-preset-env":"^1.6","eslint-config-dev":"2.0","rollup-plugin-babel":"^3.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-mod-function-1.0.0.tgz_1516134445923_0.3393623777665198","host":"s3://npm-registry-packages"}},"3.0.2":{"name":"postcss-color-mod-function","version":"3.0.2","keywords":["postcss","css","postcss-plugin","colors","colours","modifications","mods","adjusters","adjustments","csswg","rgba","hsla","white","black","red","green","blue","alpha","hue","saturation","lightness","whiteness","blackness","tint","shade","blenda","contrast"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-mod-function@3.0.2","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-color-mod-function#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-color-mod-function/issues"},"dist":{"shasum":"10f23adae5867dc07ff853bdbea6d2565bdfabf0","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-mod-function/-/postcss-color-mod-function-3.0.2.tgz","fileCount":8,"integrity":"sha512-p1onIXcrLYWB1M8CoE49sbHUlz3aIUjZ3aNV9MDsbDpSeAm5RGUKvlBfp4479ZjkOLIcbMVJTbGVlDeOBT60mw==","signatures":[{"sig":"MEUCIHIjVDN2/CA5niwivWY/FLoA13bbzAudhZwpDQrbNwr+AiEAmrGnPe+4Uu2eo/Qp4dNUSWSFx6vcxmGXt2aWpkNCLDc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":355524,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbp4lcCRA9TVsSAnZWagAAW4wQAJW3Jbi/wWFensF4cliq\n1RdM2T4R/p8cP/qBAtURqVxsOUp42YIrGAvnXq2qoeESwSkxfCd+rz9XBxn0\nfGtXsiuhl/WHAgldXyp5auKQW3Rs6TnzP0ftkQ3sc09Y7L+m2idzYumd9m1P\n2NcpzltSyU8QjmTw92uZlRw9oKPGrQLaTy8WwbFQXwGoYktJvZNKzAPV2BCG\nDkkXSO5ObK4T/e124gfCfjpc91vwg1eyo1uLz7UGOC+WI8dgnScBwvpnCGGp\n3jLEmj7I0rR1j3K3IjnLnMxj98zBWWIpQqvCDVGR3bq242zretf7ysF7Tnj0\nR62W1o/z80wySpZsnMlRz67+r6eREi1qPie3SdFzr5XM6VEK3O9V9pASetJ5\nxzIPAl/Dm1heYSRk+1terF2DBhuKVBUDF85KzeHxFBFpXqJITbJt3UMT00Hw\nuD9/re/H5Fk/XyNfN6DxXgIRObzc8Jo0tW1zeyIE/sEvXJuWYrHAN4fKuvVZ\nhiY08BbLeZJYXvEhlUrfywwFTycgHzgV112HbUlAit24yI01lO980DGa8vSJ\nfjv3NjsHS6ZToVW/C6VwsMTsRXArhCXpz9qfsA9wLerwsImg8YaglzAgQpAX\nncGi+HK1EIwK5qzzB3ynYfVt5KKSt8rIy9JaeJ/pWNw0BFbj8olA7Cm/1FnY\nwdqb\r\n=Nm9E\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"a6499dfdd4422dc3b9b15a0078d7264d1d7430a9","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-color-mod-function.git","type":"git"},"_npmVersion":"6.4.1","description":"Modify colors using the color-mod() function in CSS","directories":{},"_nodeVersion":"10.11.0","dependencies":{"postcss":"^7.0.2","postcss-values-parser":"^2.0.0","@csstools/convert-colors":"^1.4.0"},"eslintConfig":{"rules":{"max-params":[2,5]},"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.6.0","rollup":"^0.66.2","pre-commit":"^1.2.2","@babel/core":"^7.1.0","babel-eslint":"^9.0.0","postcss-tape":"^2.2.0","@babel/preset-env":"^7.1.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^4.0.3","@babel/plugin-syntax-dynamic-import":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-mod-function_3.0.2_1537706331759_0.13163777718107794","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"postcss-color-mod-function","version":"1.1.0","keywords":["postcss","css","postcss-plugin","colors","colours","modifications","mods","adjusters","adjustments","csswg","rgba","hsla","white","black","red","green","blue","alpha","hue","saturation","lightness","whiteness","blackness","tint","shade","blenda","contrast"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-mod-function@1.1.0","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-color-mod-function#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-color-mod-function/issues"},"dist":{"shasum":"57f9282374b5cab64f7d2e1065822fa3e4701429","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-mod-function/-/postcss-color-mod-function-1.1.0.tgz","integrity":"sha512-NNfuKQefjY/W86lkI8s7uCjks/u5KPRyJdDEdkecv86ARAbs7TVav/l25fc7GW3OYqE4BEMXkaw/WDcITxanFg==","signatures":[{"sig":"MEQCICN65EOQOP4d362fJBXeND7auWMOHiU/piYDDjhME98LAiALqWogOd2KmwKep3hYzV+SrOVq7ZsRB6p3h9hyvmhjrA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.bundle.js","files":["index.js","index.bundle.js","lib"],"module":"index.js","engines":{"node":">=4.0.0"},"gitHead":"16bd403e37cdbb8696dbdb7d6937cd93e248b005","scripts":{"test":"echo 'Running tests...'; npm run test:ec && npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:ec":"echint --ignore index.bundle.js test","test:js":"eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-color-mod-function.git","type":"git"},"_npmVersion":"5.6.0","description":"Modify colors using the color-mod() function in CSS","directories":{},"_nodeVersion":"9.3.0","dependencies":{"postcss":"^6.0","color-name":"^1.1.3","postcss-values-parser":"^1.3.1"},"eslintConfig":{"parser":"babel-eslint","extends":"dev"},"devDependencies":{"echint":"^4.0","eslint":"^4.15","rollup":"^0.54","babel-core":"^6.26","pre-commit":"^1.2","babel-eslint":"^8.2","postcss-tape":"2.2","babel-preset-env":"^1.6","eslint-config-dev":"2.0","rollup-plugin-babel":"^3.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-mod-function-1.1.0.tgz_1516171171102_0.8107561711221933","host":"s3://npm-registry-packages"}},"3.0.3":{"name":"postcss-color-mod-function","version":"3.0.3","keywords":["postcss","css","postcss-plugin","colors","colours","modifications","mods","adjusters","adjustments","csswg","rgba","hsla","white","black","red","green","blue","alpha","hue","saturation","lightness","whiteness","blackness","tint","shade","blenda","contrast"],"author":{"name":"Jonathan Neal","email":"jonathantneal@hotmail.com"},"license":"CC0-1.0","_id":"postcss-color-mod-function@3.0.3","maintainers":[{"name":"jonathantneal","email":"jonathantneal@hotmail.com"}],"homepage":"https://github.com/jonathantneal/postcss-color-mod-function#readme","bugs":{"url":"https://github.com/jonathantneal/postcss-color-mod-function/issues"},"dist":{"shasum":"816ba145ac11cc3cb6baa905a75a49f903e4d31d","tarball":"https://devel.data-in-motion.biz/nexus/repository/npm-group/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz","fileCount":8,"integrity":"sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==","signatures":[{"sig":"MEQCIBlyGu77N3UCxEnbqVd91O/ZSeqs4WJQQOR1S3WsoiB1AiB8q2opg++MeipeDhe2VFQVxzYDtnrRjganzOelEOIGjQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":357866,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbp+JRCRA9TVsSAnZWagAArXAP/j8wVBPIMSvIqtR1Xi9R\nCQU0Dasm6XoHoTTtiggGxjc6sNJWq4lt59jhkv8dhtpjgKVwfajc2ScNBD1/\nDEXsONFCHjdAsALQ+FeO9lLCE8vinNRGYIdmnOUnnscuF9KCVeIwgUBF7+h5\nq7MsijwAzVGdPsF9BdwKfDpULGz1/MOrbzSydUjiQ0C6lKPesmBKBS7YUx9N\nohpshsJZ+ZRpKdHoiYndqyej8LTRPcUAMJBIpnaddt1HztOZeukTP8pejazP\nn8PKoVTf9f1DESDpJga7k7puRxF2QZp7s0ylz4BAsaVPtHFNsVF++2LRnb7+\nqbVTzvwu08Q6XGN8/5YtRQEAIrGbM7WwAt4Nrd2eidAmk2NfFiEkOud/BlnC\np2rkbusZRs0uh2FL/pXvtC5AezA+GXpmxTPK+NkCmg45BtmhemDTWXqgTiM/\n8KQU1Ebu1gExRjimVoAg9GBH9N4Bz2qy7RX77aO1YAS5oX53HUCGP1SqmAsA\nj1/gJyhn5FuR/n0z6i0eFWO/mT28+BIyw3sRRsNYsH2rO0ScWOr7y2Eow0EK\nJWiit8QnR2yTWs+PhmE7c09zaS3KM6b6o5c9JcdQYWAx7gjnbm3dRN+POxP1\njRN/H4lk86EERtdJeL/BS1PmxFkAL9DzwtOiPuwqaWhVsWGR3VmFfuEmKuAM\nlp07\r\n=ayRS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.es.mjs","engines":{"node":">=6.0.0"},"gitHead":"9ff8cac91d105ed370d8fe62e5e8a0c3b4a3003c","scripts":{"test":"echo 'Running tests...'; npm run test:js && npm run test:tape","pretest":"rollup -c .rollup.js --silent","test:js":"eslint *.js lib/*.js --cache --ignore-path .gitignore --quiet","test:tape":"postcss-tape","prepublishOnly":"npm test"},"_npmUser":{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},"repository":{"url":"git+https://github.com/jonathantneal/postcss-color-mod-function.git","type":"git"},"_npmVersion":"6.4.1","description":"Modify colors using the color-mod() function in CSS","directories":{},"_nodeVersion":"10.11.0","dependencies":{"postcss":"^7.0.2","postcss-values-parser":"^2.0.0","@csstools/convert-colors":"^1.4.0"},"eslintConfig":{"rules":{"max-params":[2,5]},"parser":"babel-eslint","extends":"dev"},"_hasShrinkwrap":false,"devDependencies":{"eslint":"^5.6.0","rollup":"^0.66.2","pre-commit":"^1.2.2","@babel/core":"^7.1.0","babel-eslint":"^9.0.0","postcss-tape":"^2.2.0","@babel/preset-env":"^7.1.0","eslint-config-dev":"^2.0.0","rollup-plugin-babel":"^4.0.3","@babel/plugin-syntax-dynamic-import":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/postcss-color-mod-function_3.0.3_1537729104527_0.171900465351285","host":"s3://npm-registry-packages"}}},"name":"postcss-color-mod-function","time":{"2.1.0":"2018-01-21T03:05:14.266Z","created":"2018-01-16T20:27:26.869Z","4.1.1":"2024-10-19T08:37:03.700Z","2.4.2":"2018-02-27T06:00:20.529Z","4.0.0":"2024-10-18T11:53:17.770Z","2.4.3":"2018-07-21T11:44:54.922Z","4.1.0":"2024-10-18T14:19:22.057Z","2.4.0":"2018-02-16T13:31:06.321Z","2.4.1":"2018-02-21T15:29:22.274Z","2.2.0":"2018-01-22T17:02:41.420Z","2.3.0":"2018-01-26T03:30:38.670Z","3.0.0":"2018-09-17T18:48:06.284Z","modified":"2025-05-14T09:00:36.564Z","3.0.1":"2018-09-18T16:25:18.756Z","1.0.0":"2018-01-16T20:27:26.869Z","3.0.2":"2018-09-23T12:38:51.997Z","1.1.0":"2018-01-17T06:39:31.259Z","3.0.3":"2018-09-23T18:58:24.687Z"},"readmeFilename":"README.md","homepage":"https://github.com/csstools/postcss-color-mod-function#readme"}