diff --git a/.sassdocrc b/.sassdocrc index 8e23041..75aaceb 100644 --- a/.sassdocrc +++ b/.sassdocrc @@ -34,6 +34,6 @@ herman: - name: 'CSS Colors Level 5' url: 'https://www.w3.org/TR/css-color-5/' - name: 'GitHub Source' - url: 'https://github.com/mirisuzanne/blend/' + url: 'https://github.com/oddbird/blend/' - name: 'OddBird' url: 'http://oddbird.net/' diff --git a/CHANGELOG.md b/CHANGELOG.md index c232622..e1bed25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,28 +1,32 @@ # Blend Changelog -## v0.2.0 - UNRELEASED -- BREAKING: Remove over-complicated settings & output options for now. - Focus on Sass <-> CIE functions. -- NEW: `lch()` hue channel accepts any angle unit +## v0.2.0 - 2020.05.27 +- **BREAKING**: Moved project to [oddbird/blend][repo] on GitHub, + and [@oddbird/blend][pkg] on NPM. +- **BREAKING**: Remove over-complicated settings & output options for now. + Focus on practical Sass conversion to and from CIE functions. +- **NEW**: `lch()` hue channel accepts any angle unit (e.g. `turn`, `rad`, `grad`, or `deg`) -- NEW: `lab($lab, $a)` returns an (sRGB) Sass color -- NEW: Inspect LCH/Lab values of a Sass color with +- **NEW**: `lab($lab, $a)` returns an (sRGB) Sass color +- **NEW**: Inspect LCH/Lab values of a Sass color with - `lightness()` - `a()` and `b()` - `chroma()` and `hue()` -- NEW: `contrast()` selects the best contrast from a list -- NEW: Generate new colors based on relative LCH & Lab adjustments: +- **NEW**: `contrast()` selects the best contrast from a list +- **NEW**: Generate new colors based on relative LCH & Lab adjustments: - `set()` to replace a channel value - `adjust()` to add or subtract from a channel - `scale()` to scale fluidly towards one "end" of the channel range -- NEW: `from()` converts a Sass color to LCH +- **NEW**: `from()` converts a Sass color to LCH in order to adjust CIE lightness, chroma, and hue -- using a syntax roughly based on [CSS Colors Level 5 relative syntax][relative] +[pkg]: https://www.npmjs.com/package/@oddbird/blend +[repo]: https://github.com/oddbird/blend/ [relative]: https://www.w3.org/TR/css-color-5/#relative-RGB ## v0.1.1 - 2020.05.06 -- NEW: `lch($lch, $a)` returns an (sRGB) Sass color +- **NEW**: `lch($lch, $a)` returns an (sRGB) Sass color - Various other now-removed things… ¯\\\_(ツ)_/¯ that's what pre-releases are for diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e2aa36a..0e99305 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,7 +2,7 @@ Ideas, issues, and pull-requests are welcome! -- [**Github Issues**](https://github.com/mirisuzanne/blend/issues/) +- [**Github Issues**](https://github.com/oddbird/blend/issues/) are the best place to request a feature, file a bug, or just ask a question. diff --git a/README.md b/README.md index f37f42a..19af82a 100644 --- a/README.md +++ b/README.md @@ -13,14 +13,6 @@ while working with Sass colors. [Level 4]: https://www.w3.org/TR/css-color-4/ [Level 5]: https://www.w3.org/TR/css-color-5/ -See the wonderful interactive -[LCH Color Picker](https://css.land/lch/) -by [Lea Verou](http://lea.verou.me/). -We use the same conversion math, -originally written in JS by -[Chris Lilley](https://svgees.us/) -and [Tab Atkins](https://www.xanthir.com/). - Note that conversion between color-spaces requires gamut-adjustments and rounding. While we use the same conversion math recommended for browsers, @@ -28,12 +20,25 @@ pre-processing can result in slight variations in each step. Converting a color from one format to another and back again, may result in slight differences. +## Color Picker + +To get started with new CSS color formats +(and LCH in particular), +check out the wonderful +[LCH Color Picker](https://css.land/lch/) +by [Lea Verou](http://lea.verou.me/). + +We use the same conversion math, +originally written in JS by +[Chris Lilley](https://svgees.us/) +and [Tab Atkins](https://www.xanthir.com/). + ## Usage Download the files from GitHub, or install the npm package: ``` -npm install @mirisuzanne/blend --save-dev +npm install @oddbird/blend --save-dev ``` Import with Dart Sass @@ -121,7 +126,11 @@ $from: ( The initial version is mostly focused on CIE colors, but Level 4 includes an array of new formats. -We're working on it… +We're working on it. + +See the full list of [planned enhancements][todo]. + +[todo]: https://github.com/oddbird/blend/issues?q=is%3Aissue+is%3Aopen+label%3Aenhancement ```scss @use 'blend'; diff --git a/docs/CHANGELOG.html b/docs/CHANGELOG.html index ed82072..285a694 100644 --- a/docs/CHANGELOG.html +++ b/docs/CHANGELOG.html @@ -7,7 +7,7 @@ -
lch()
hue channel accepts any angle unit
+lch()
hue channel accepts any angle unit
(e.g. turn
, rad
, grad
, or deg
)lab($lab, $a)
returns an (sRGB) Sass colorlab($lab, $a)
returns an (sRGB) Sass colorlightness()
a()
and b()
chroma()
and hue()
contrast()
selects the best contrast from a listcontrast()
selects the best contrast from a listset()
to replace a channel valueadjust()
to add or subtract from a channelscale()
to scale fluidly towards one “end” of the channel rangefrom()
converts a Sass color to LCH
+from()
converts a Sass color to LCH
in order to adjust CIE lightness, chroma, and hue –
using a syntax roughly based on
CSS Colors Level 5 relative syntaxlch($lch, $a)
returns an (sRGB) Sass colorlch($lch, $a)
returns an (sRGB) Sass colorIdeas, issues, and pull-requests are welcome!
See the wonderful interactive -LCH Color Picker -by Lea Verou. -We use the same conversion math, -originally written in JS by -Chris Lilley -and Tab Atkins.
Note that conversion between color-spaces requires gamut-adjustments and rounding. While we use the same conversion math recommended for browsers, pre-processing can result in slight variations in each step. Converting a color from one format to another and back again, may result in slight differences.
+To get started with new CSS color formats +(and LCH in particular), +check out the wonderful +LCH Color Picker +by Lea Verou.
+We use the same conversion math, +originally written in JS by +Chris Lilley +and Tab Atkins.
Download the files from GitHub, or install the npm package:
-npm install @mirisuzanne/blend --save-dev
+npm install @oddbird/blend --save-dev
Import with Dart Sass
@use '<path-to>/blend';
@@ -281,7 +284,8 @@ Relative Colors
Todo
The initial version is mostly focused on CIE colors,
but Level 4 includes an array of new formats.
-We’re working on it…
+We’re working on it.
+See the full list of planned enhancements.
@use 'blend';
$new-formats: (
diff --git a/docs/search-data.json b/docs/search-data.json
index 8ab3ae1..cfdf5c3 100644
--- a/docs/search-data.json
+++ b/docs/search-data.json
@@ -1 +1 @@
-{"idx":{"version":"2.3.8","fields":["title","contents"],"fieldVectors":[["title/adjust.html",[0,0.505,1,0.053]],["contents/adjust.html",[0,0.676,1,0.102,2,0.826,3,1.156,4,0.565,5,1.156,6,0.691,7,0.609,8,0.826,9,1.396,10,0.967,11,1.156,12,1.156,13,0.826,14,0.942,15,0.55,16,0.447,17,0.447,18,0.942,19,0.511,20,1.832,21,1.278,22,0.596,23,0.942,24,0.483,25,0.833,26,2.186,27,2.428,28,3.282,29,1.758,30,1.563,31,0.952,32,0.38,33,1.758,34,0.483,35,1.758,36,0.889,37,3.396,38,2.404,39,0.826,40,0.952,41,1.029,42,0.323,43,2.449,44,2.449,45,0.889,46,1.854,47,2.449,48,0.889,49,0.942,50,0.826,51,0.826,52,2.468,53,2.01,54,1.088,55,1.901,56,1.563,57,1.563,58,0.952,59,0.952,60,1.787,61,1.402,62,0.676,63,2.46,64,1.787,65,1.787,66,2.932,67,1.156,68,2.46,69,1.296,70,2.46,71,1.753,72,0.826,73,2.46,74,1.758,75,1.156,76,0.609,77,0.942,78,0.731,79,1.787,80,0.491,81,0.826,82,0.318,83,1.156,84,0.846,85,0.491,86,1.278,87,1.156,88,1.156,89,1.156,90,0.826,91,0.609,92,1.787,93,1.156,94,1.156,95,1.156,96,0.826,97,2.186,98,0.826,99,1.901,100,0.691,101,1.156,102,0.826,103,0.826,104,0.826,105,0.826,106,2.46,107,0.826,108,0.609,109,0.826,110,0.609,111,0.609,112,0.826,113,1.787,114,1.787,115,0.447,116,0.318,117,0.447,118,0.447,119,0.447,120,0.447,121,0.447,122,0.447,123,1.156,124,1.156,125,1.156,126,1.156,127,1.156,128,1.156,129,0.826,130,1.156,131,0.826,132,1.156,133,1.156,134,1.156,135,1.156,136,1.156,137,1.156,138,1.156,139,0.826,140,1.156,141,1.156,142,1.156,143,1.156,144,1.156,145,1.156,146,1.156]],["title/CHANGELOG.html",[147,1.635]],["contents/CHANGELOG.html",[0,0.802,1,0.101,4,0.58,6,0.896,7,1.221,9,1.236,10,0.922,15,0.421,16,0.896,17,0.896,19,0.421,20,1.538,22,0.421,24,0.53,25,0.802,30,1.656,32,0.352,34,0.628,36,0.802,42,0.236,45,0.802,48,0.878,49,1.221,54,0.896,71,1.538,72,1.656,74,1.656,77,1.221,84,1.129,85,0.802,98,1.656,102,1.656,103,1.656,104,1.656,108,1.221,147,1.656,148,1.221,149,2.317,150,2.317,151,2.317,152,2.918,153,2.317,154,2.317,155,1.221,156,1.656,157,2.918,158,2.317,159,1.538,160,1.91,161,2.317,162,2.317,163,2.317,164,2.317,165,2.317,166,2.317,167,1.538,168,0.896,169,2.317,170,1.129,171,1.656,172,0.896,173,1.221,174,2.317,175,1.221,176,2.317,177,2.317,178,2.317,179,2.317,180,2.317,181,1.656,182,2.317,183,2.317,184,1.221,185,2.317]],["title/cie-formats.html",[4,0.239,22,0.239,32,0.134,186,0.694]],["contents/cie-formats.html",[0,0.483,1,0.099,4,0.661,6,0.68,9,0.68,10,0.668,14,1.469,15,0.593,18,1.469,19,0.593,22,0.661,23,1.469,24,0.506,25,0.668,29,1.256,31,0.94,32,0.37,34,0.546,36,0.826,38,2.15,40,1.295,41,1.295,42,0.284,45,0.766,46,1.585,48,0.668,49,0.926,50,1.256,51,1.256,53,1.256,54,0.94,56,1.256,57,1.256,58,0.94,59,0.94,62,0.766,69,1.469,76,1.281,78,0.826,80,0.483,82,0.483,84,0.94,85,0.483,115,0.94,116,0.826,117,1.163,118,0.94,119,1.263,120,1.263,121,0.94,122,1.163,159,1.281,167,1.585,173,1.585,175,1.469,184,0.926,186,1.281,187,1.757,188,1.757,189,2.15,190,1.757,191,1.757,192,0.926,193,1.738,194,1.256,195,1.256,196,1.757,197,1.256,198,1.757,199,1.738,200,1.256,201,1.757,202,1.738,203,1.757,204,1.757,205,1.256,206,1.757,207,1.256,208,1.757,209,1.757,210,1.757,211,1.757,212,0.926,213,1.757,214,1.757,215,2.43,216,2.787,217,3.007,218,2.43,219,1.738,220,2.43,221,2.43,222,2.43,223,2.43,224,3.007,225,3.347,226,2.43,227,2.43,228,2.43,229,2.43]],["title/cie-inspect.html",[1,0.053,168,0.71]],["contents/cie-inspect.html",[1,0.107,4,0.502,10,0.893,15,0.57,19,0.617,22,0.502,24,0.542,25,0.97,31,1.214,32,0.382,34,0.617,36,0.893,40,0.668,41,1.068,45,0.821,46,1.654,48,0.893,54,1.155,58,1.214,59,1.214,61,0.911,62,0.862,78,0.66,100,0.668,115,0.668,116,0.97,117,0.668,118,0.668,119,0.668,120,0.668,121,0.668,122,0.668,155,1.266,168,1.314,192,1.266,212,1.266,230,1.728,231,2.762,232,1.728,233,1.728,234,1.728,235,1.235,236,1.728,237,2.524,238,1.235,239,1.975,240,1.235,241,1.235,242,1.235,243,1.235,244,3.531,245,1.728,246,1.728,247,1.728,248,3.531,249,1.728,250,1.728,251,1.728,252,1.728,253,2.762,254,2.402,255,1.728,256,1.728,257,1.728,258,1.728,259,1.728,260,1.728,261,1.728,262,1.728,263,1.728,264,1.728,265,1.728,266,1.728,267,1.728,268,1.728,269,1.728,270,1.728,271,1.728,272,1.728,273,1.728,274,1.728,275,1.728,276,1.728,277,1.728,278,1.728,279,1.728,280,1.728,281,1.728,282,1.728,283,1.728,284,1.728,285,1.728,286,1.728,287,1.728,288,1.728,289,1.728,290,1.728,291,1.728,292,1.728,293,1.728,294,1.728,295,1.728,296,1.728]],["title/contrast.html",[1,0.053,170,0.71]],["contents/contrast.html",[1,0.106,14,1.448,15,0.588,16,0.816,17,0.816,18,1.448,19,0.555,23,1.111,24,0.383,25,0.89,27,1.964,31,0.816,32,0.369,40,1.332,41,1.063,42,0.215,55,1.507,58,0.816,59,0.816,62,0.579,76,1.111,78,0.579,80,0.579,81,1.507,82,0.755,85,0.755,105,1.507,111,1.611,115,0.816,116,0.84,117,0.816,118,0.816,119,0.816,120,0.816,121,0.816,122,0.816,129,1.507,156,2.461,170,1.451,171,1.507,172,1.063,173,1.111,237,1.507,238,1.507,239,1.507,240,1.507,241,1.507,242,1.507,243,1.507,297,2.108,298,1.507,299,2.108,300,2.108,301,1.507,302,1.507,303,2.108,304,2.315,305,2.108,306,2.315,307,2.108,308,2.108,309,2.108,310,2.461,311,2.747,312,1.815,313,2.108,314,2.108,315,2.108,316,2.108,317,3.056,318,2.185,319,1.964,320,2.108,321,2.747,322,2.108,323,2.108,324,2.108]],["title/CONTRIBUTING.html",[325,1.635]],["contents/CONTRIBUTING.html",[2,1.694,34,0.614,42,0.241,62,0.651,90,1.694,96,2.116,100,0.917,148,1.249,160,1.249,172,1.145,181,1.694,212,1.249,235,1.694,312,1.249,325,1.694,326,2.369,327,3.228,328,2.96,329,3.228,330,2.369,331,1.694,332,2.96,333,2.308,334,1.249,335,2.369,336,2.369,337,2.369,338,2.369,339,2.96,340,2.369,341,2.369,342,2.369,343,2.369,344,2.369,345,2.369,346,2.369,347,2.369,348,2.96,349,2.369,350,2.369,351,2.369,352,1.56,353,1.694,354,2.96,355,2.369,356,1.694,357,2.369,358,2.369,359,3.549,360,1.694,361,2.369,362,1.694,363,2.369,364,2.369,365,2.369,366,2.369,367,2.369,368,3.381,369,2.369,370,3.228,371,2.369,372,2.369,373,2.96,374,2.369,375,2.369,376,2.369,377,2.369,378,2.369,379,2.369,380,1.694,381,2.369,382,2.369,383,2.96,384,2.369,385,2.369,386,2.369,387,1.694]],["title/index.html",[352,0.968,388,1.313]],["contents/index.html",[0,0.838,1,0.105,4,0.592,7,0.843,8,1.144,9,1.226,10,0.728,13,1.627,15,0.481,16,1.18,17,1.025,19,0.413,20,1.2,22,0.576,24,0.413,32,0.386,33,1.144,34,0.605,36,0.626,39,1.144,42,0.31,43,1.894,44,1.144,45,0.728,47,1.894,48,0.626,52,2.063,61,1.2,69,1.607,71,1.2,78,0.728,80,0.44,82,0.44,84,0.881,85,0.626,86,1.144,91,0.843,99,1.144,107,1.144,108,0.843,109,1.144,110,0.843,111,1.2,112,1.144,116,0.626,131,1.144,139,1.144,148,1.397,155,0.843,159,1.397,160,1.521,167,0.843,168,1.025,170,1.261,172,0.619,175,0.843,184,0.843,186,1.607,189,1.627,192,1.2,193,1.627,194,1.144,195,1.144,197,2.063,199,1.144,200,1.144,202,1.144,205,1.144,207,1.144,219,1.144,298,1.144,301,1.144,302,1.144,304,1.144,306,1.144,310,1.144,312,0.843,318,1.627,319,1.627,331,1.144,333,1.144,334,0.843,356,1.144,360,1.627,362,1.627,380,1.627,388,1.144,389,2.276,390,1.6,391,1.144,392,2.276,393,1.627,394,1.6,395,1.6,396,1.6,397,1.6,398,1.6,399,1.6,400,1.6,401,1.6,402,1.6,403,1.6,404,1.6,405,1.6,406,1.6,407,1.6,408,1.6,409,1.6,410,2.276,411,1.6,412,1.6,413,1.6,414,1.6,415,1.6,416,2.276,417,1.6,418,1.6,419,1.6,420,1.6,421,1.6,422,1.6,423,1.6,424,2.276,425,1.6,426,1.6,427,2.649,428,1.6,429,1.6,430,1.6,431,1.6,432,1.6,433,1.6,434,3.169,435,1.6,436,1.6,437,1.6,438,1.6,439,1.6,440,1.6,441,2.886,442,1.6,443,1.6,444,1.6,445,1.6,446,1.6,447,1.6,448,1.6,449,2.276,450,1.6,451,2.649,452,1.6,453,1.6,454,1.6,455,1.6,456,1.6,457,1.6,458,1.6,459,1.6,460,2.649,461,2.276,462,2.649]],["title/LICENSE.html",[463,1.533,464,1.096,465,1.096]],["contents/LICENSE.html",[6,0.776,21,1.434,35,1.434,42,0.352,77,1.057,80,0.551,82,0.731,91,1.057,100,0.776,110,1.057,334,1.057,352,1.057,353,2.132,387,1.434,391,1.9,393,2.132,464,1.434,465,2.362,466,2.982,467,2.005,468,2.658,469,2.005,470,2.005,471,2.005,472,2.005,473,2.658,474,2.005,475,3.175,476,3.648,477,2.005,478,2.658,479,2.982,480,2.005,481,2.982,482,2.005,483,2.005,484,2.005,485,2.005,486,2.005,487,2.005,488,2.005,489,2.658,490,2.005,491,2.005,492,2.658,493,2.658,494,2.658,495,3.395,496,2.005,497,3.175,498,2.982,499,2.005,500,2.005,501,2.658,502,2.005,503,2.005,504,2.658,505,2.005,506,2.005,507,2.005,508,2.005,509,2.005,510,2.005,511,2.658,512,2.005,513,2.005,514,3.175,515,2.658,516,2.005,517,2.982,518,2.658,519,2.005,520,2.658,521,2.005,522,2.658,523,2.982,524,2.658,525,2.658,526,2.658,527,2.005,528,2.005,529,2.005,530,2.005,531,2.005,532,2.005,533,2.005,534,2.005,535,2.005,536,2.005,537,2.005,538,2.005,539,2.005,540,2.658,541,2.005,542,2.005,543,2.005,544,2.005,545,2.005,546,2.005,547,2.005,548,2.005,549,2.005,550,2.005,551,2.005,552,2.005,553,2.005,554,2.005,555,2.005,556,2.005,557,2.005,558,2.005,559,2.005,560,2.005,561,2.005,562,2.005,563,2.005,564,2.005,565,2.005,566,2.005,567,2.005,568,2.005,569,2.005,570,2.005]]],"invertedIndex":[["",{"_index":32,"title":{"cie-formats.html":{"position":[[4,1]]}},"contents":{"adjust.html":{"position":[[373,1],[906,1],[947,1],[1041,1],[1061,1],[1100,1],[1301,1],[1778,1],[1819,1],[1915,1],[1935,1],[1971,1],[2171,1],[2827,1],[2886,1],[2912,1],[3020,1],[3040,1],[3082,1],[3400,1],[3404,1],[3537,1],[3541,1],[3579,1],[3583,1],[3665,1],[3669,1],[3762,1],[3834,1],[3843,1],[3894,1],[3903,1],[3953,1],[3962,1],[4072,1],[4074,2],[4136,2],[4219,2],[4310,2],[4387,1],[4408,1],[4476,1],[4816,1]]},"CHANGELOG.html":{"position":[[79,1],[119,1],[121,1],[456,1],[706,1]]},"cie-formats.html":{"position":[[4,1],[717,1],[1070,1],[1072,2],[1129,2],[1191,1],[1211,1],[1265,1],[1653,1],[1794,1],[1796,2],[1850,2],[1915,1],[1935,1],[1989,1]]},"cie-inspect.html":{"position":[[613,1],[750,1],[910,1],[936,1],[1046,1],[1073,1],[1190,1],[1318,1],[1336,1],[1443,1],[1470,1],[1587,1],[1715,1],[1733,1],[1841,1],[1873,1],[2000,1],[2148,1],[2171,1],[2278,1],[2430,1],[2551,1],[2687,1],[2707,1],[2828,1]]},"contrast.html":{"position":[[67,1],[284,1],[757,1],[759,2],[832,2],[912,2],[942,2],[1012,1],[1037,1],[1094,1]]},"index.html":{"position":[[88,1],[891,1],[915,1],[977,1],[1053,2],[1059,1],[1089,2],[1107,2],[1193,1],[1195,2],[1263,2],[1336,2],[1365,2],[1424,2],[1457,1],[1496,1],[1598,2],[1659,1],[1683,1],[1685,2],[1737,2],[1791,2],[1860,2],[1966,1],[1968,2],[2018,2],[2086,2],[2163,2],[2223,2],[2379,1],[2497,4],[2502,2],[2517,1],[2604,4],[2609,2],[2621,1],[2717,4],[2722,2]]}}}],["0",{"_index":40,"title":{},"contents":{"adjust.html":{"position":[[504,1],[621,1],[2324,1],[2457,1]]},"cie-formats.html":{"position":[[834,3],[883,1],[983,2],[1005,3],[1641,3],[1744,2],[1766,3]]},"cie-inspect.html":{"position":[[362,2]]},"contrast.html":{"position":[[1268,2],[1271,2],[1281,3],[1285,3],[1314,2],[1317,2]]}}}],["0.2824",{"_index":453,"title":{},"contents":{"index.html":{"position":[[2437,6]]}}}],["0.2955",{"_index":458,"title":{},"contents":{"index.html":{"position":[[2481,6]]}}}],["0.4324",{"_index":459,"title":{},"contents":{"index.html":{"position":[[2488,8]]}}}],["0.4581",{"_index":454,"title":{},"contents":{"index.html":{"position":[[2444,8]]}}}],["0.5",{"_index":426,"title":{},"contents":{"index.html":{"position":[[1083,5]]}}}],["0.6",{"_index":225,"title":{},"contents":{"cie-formats.html":{"position":[[1259,5],[1448,4],[1473,4],[1909,5],[1983,5],[2156,4],[2181,4]]}}}],["0.6431",{"_index":457,"title":{},"contents":{"index.html":{"position":[[2474,6]]}}}],["0.728",{"_index":452,"title":{},"contents":{"index.html":{"position":[[2431,5]]}}}],["000000",{"_index":320,"title":{},"contents":{"contrast.html":{"position":[[1253,7]]}}}],["005278",{"_index":70,"title":{},"contents":{"adjust.html":{"position":[[1942,8],[1962,8],[4432,8],[4687,7]]}}}],["0deg",{"_index":50,"title":{},"contents":{"adjust.html":{"position":[[707,5]]},"cie-formats.html":{"position":[[906,5]]}}}],["1",{"_index":220,"title":{},"contents":{"cie-formats.html":{"position":[[986,2],[1747,2]]}}}],["10",{"_index":434,"title":{},"contents":{"index.html":{"position":[[1702,2],[1732,4],[1755,2],[1786,4],[1810,3],[1854,5]]}}}],["100",{"_index":41,"title":{},"contents":{"adjust.html":{"position":[[510,4],[623,4],[2329,3],[2462,3],[4720,5]]},"cie-formats.html":{"position":[[838,5],[885,4],[924,4],[1009,5],[1645,5],[1685,4],[1770,5]]},"cie-inspect.html":{"position":[[263,5],[373,5],[428,5]]},"contrast.html":{"position":[[1234,5],[1327,5]]}}}],["101",{"_index":125,"title":{},"contents":{"adjust.html":{"position":[[4648,4]]}}}],["120",{"_index":131,"title":{},"contents":{"adjust.html":{"position":[[4706,4]]},"index.html":{"position":[[1042,4]]}}}],["133",{"_index":142,"title":{},"contents":{"adjust.html":{"position":[[4837,4]]}}}],["136",{"_index":135,"title":{},"contents":{"adjust.html":{"position":[[4768,4]]}}}],["14.6759120217",{"_index":276,"title":{},"contents":{"cie-inspect.html":{"position":[[1747,14]]}}}],["14.8939211974",{"_index":284,"title":{},"contents":{"cie-inspect.html":{"position":[[2185,14]]}}}],["147",{"_index":250,"title":{},"contents":{"cie-inspect.html":{"position":[[414,4]]}}}],["15",{"_index":449,"title":{},"contents":{"index.html":{"position":[[2398,3],[2402,5]]}}}],["15.7528937383",{"_index":270,"title":{},"contents":{"cie-inspect.html":{"position":[[1403,14]]}}}],["153",{"_index":120,"title":{},"contents":{"adjust.html":{"position":[[4590,4]]},"cie-formats.html":{"position":[[1254,4],[1391,4],[1443,4],[1978,4],[2099,4],[2151,4]]},"cie-inspect.html":{"position":[[309,4]]},"contrast.html":{"position":[[1365,4]]}}}],["160",{"_index":53,"title":{},"contents":{"adjust.html":{"position":[[815,4],[874,4],[2696,3],[2704,3],[2786,3],[2794,3]]},"cie-formats.html":{"position":[[1674,6]]}}}],["18",{"_index":127,"title":{},"contents":{"adjust.html":{"position":[[4662,4]]}}}],["2",{"_index":140,"title":{},"contents":{"adjust.html":{"position":[[4818,1]]}}}],["2.5389948734",{"_index":268,"title":{},"contents":{"cie-inspect.html":{"position":[[1350,13]]}}}],["20",{"_index":61,"title":{},"contents":{"adjust.html":{"position":[[991,4],[1036,4],[4091,2],[4128,3],[4625,2]]},"cie-inspect.html":{"position":[[410,3]]},"index.html":{"position":[[1985,2],[2010,3]]}}}],["2019",{"_index":467,"title":{},"contents":{"LICENSE.html":{"position":[[10,4]]}}}],["2020",{"_index":456,"title":{},"contents":{"index.html":{"position":[[2469,4]]}}}],["2020.05.06",{"_index":178,"title":{},"contents":{"CHANGELOG.html":{"position":[[784,10]]}}}],["213",{"_index":241,"title":{},"contents":{"cie-inspect.html":{"position":[[250,4]]},"contrast.html":{"position":[[1221,4]]}}}],["239",{"_index":240,"title":{},"contents":{"cie-inspect.html":{"position":[[245,4]]},"contrast.html":{"position":[[1216,4]]}}}],["24",{"_index":133,"title":{},"contents":{"adjust.html":{"position":[[4726,4]]}}}],["244",{"_index":143,"title":{},"contents":{"adjust.html":{"position":[[4842,4]]}}}],["248",{"_index":136,"title":{},"contents":{"adjust.html":{"position":[[4773,4]]}}}],["25",{"_index":324,"title":{},"contents":{"contrast.html":{"position":[[1333,4]]}}}],["255",{"_index":246,"title":{},"contents":{"cie-inspect.html":{"position":[[357,4]]}}}],["2l",{"_index":112,"title":{},"contents":{"adjust.html":{"position":[[4376,3]]},"index.html":{"position":[[2212,3]]}}}],["300",{"_index":423,"title":{},"contents":{"index.html":{"position":[[996,5]]}}}],["308.8616067109deg",{"_index":294,"title":{},"contents":{"cie-inspect.html":{"position":[[2754,18]]}}}],["308.86deg",{"_index":223,"title":{},"contents":{"cie-formats.html":{"position":[[1117,11],[1174,10]]}}}],["32.3927863513",{"_index":261,"title":{},"contents":{"cie-inspect.html":{"position":[[980,15]]}}}],["34",{"_index":128,"title":{},"contents":{"adjust.html":{"position":[[4667,4]]}}}],["357.1743141408deg",{"_index":296,"title":{},"contents":{"cie-inspect.html":{"position":[[2809,18]]}}}],["360deg",{"_index":51,"title":{},"contents":{"adjust.html":{"position":[[713,7]]},"cie-formats.html":{"position":[[912,7]]}}}],["38.4284034785",{"_index":269,"title":{},"contents":{"cie-inspect.html":{"position":[[1379,14]]}}}],["38.43",{"_index":228,"title":{},"contents":{"cie-formats.html":{"position":[[1835,5],[1895,5]]}}}],["4",{"_index":392,"title":{},"contents":{"index.html":{"position":[[86,1],[2294,1]]}}}],["4.1193014063",{"_index":279,"title":{},"contents":{"cie-inspect.html":{"position":[[1827,13]]}}}],["4.5",{"_index":319,"title":{},"contents":{"contrast.html":{"position":[[945,3],[1006,5]]},"index.html":{"position":[[1368,3],[1418,5]]}}}],["40",{"_index":122,"title":{},"contents":{"adjust.html":{"position":[[4609,4]]},"cie-formats.html":{"position":[[1410,4],[1468,4],[2118,4],[2176,4]]},"cie-inspect.html":{"position":[[328,4]]},"contrast.html":{"position":[[1384,4]]}}}],["47.69",{"_index":229,"title":{},"contents":{"cie-formats.html":{"position":[[1842,7],[1902,6]]}}}],["47.6901973328",{"_index":277,"title":{},"contents":{"cie-inspect.html":{"position":[[1778,14]]}}}],["5",{"_index":17,"title":{},"contents":{"adjust.html":{"position":[[177,1]]},"CHANGELOG.html":{"position":[[757,1]]},"contrast.html":{"position":[[166,2]]},"index.html":{"position":[[96,1],[1153,1],[1934,1]]}}}],["50",{"_index":78,"title":{},"contents":{"adjust.html":{"position":[[2965,5],[3014,5],[4298,4],[4604,4],[4747,3]]},"cie-formats.html":{"position":[[1405,4],[1463,4],[2113,4],[2171,4]]},"cie-inspect.html":{"position":[[323,4],[379,4]]},"contrast.html":{"position":[[1379,4]]},"index.html":{"position":[[993,2],[1047,5],[2151,4]]}}}],["51",{"_index":119,"title":{},"contents":{"adjust.html":{"position":[[4586,3]]},"cie-formats.html":{"position":[[1250,3],[1387,3],[1439,3],[1974,3],[2095,3],[2147,3]]},"cie-inspect.html":{"position":[[305,3]]},"contrast.html":{"position":[[1361,3]]}}}],["54",{"_index":252,"title":{},"contents":{"cie-inspect.html":{"position":[[434,4]]}}}],["56.6052673708",{"_index":263,"title":{},"contents":{"cie-inspect.html":{"position":[[1030,15]]}}}],["574665",{"_index":63,"title":{},"contents":{"adjust.html":{"position":[[1071,8],[1091,8],[4415,8],[4628,7]]}}}],["60",{"_index":69,"title":{},"contents":{"adjust.html":{"position":[[1861,4],[1910,4],[4214,4],[4684,2]]},"cie-formats.html":{"position":[[1132,3],[1185,5],[1853,3]]},"index.html":{"position":[[1017,2],[1020,4],[1076,2],[1079,3],[2081,4]]}}}],["61.2462008254",{"_index":285,"title":{},"contents":{"cie-inspect.html":{"position":[[2215,14]]}}}],["61.25",{"_index":222,"title":{},"contents":{"cie-formats.html":{"position":[[1111,5],[1168,5]]}}}],["663399",{"_index":117,"title":{},"contents":{"adjust.html":{"position":[[4569,7]]},"cie-formats.html":{"position":[[1370,7],[1421,7],[2078,7],[2129,7]]},"cie-inspect.html":{"position":[[288,7]]},"contrast.html":{"position":[[1344,7]]}}}],["70",{"_index":124,"title":{},"contents":{"adjust.html":{"position":[[4644,3]]}}}],["74",{"_index":146,"title":{},"contents":{"adjust.html":{"position":[[4861,4]]}}}],["75",{"_index":139,"title":{},"contents":{"adjust.html":{"position":[[4792,4]]},"index.html":{"position":[[1039,2]]}}}],["80.1847432252deg",{"_index":293,"title":{},"contents":{"cie-inspect.html":{"position":[[2721,17]]}}}],["800000",{"_index":322,"title":{},"contents":{"contrast.html":{"position":[[1297,7]]}}}],["82",{"_index":130,"title":{},"contents":{"adjust.html":{"position":[[4702,3]]}}}],["83",{"_index":145,"title":{},"contents":{"adjust.html":{"position":[[4856,4]]}}}],["83.4583942761",{"_index":271,"title":{},"contents":{"cie-inspect.html":{"position":[[1428,14]]}}}],["83.5599917378",{"_index":287,"title":{},"contents":{"cie-inspect.html":{"position":[[2263,14]]}}}],["89",{"_index":138,"title":{},"contents":{"adjust.html":{"position":[[4787,4]]}}}],["92",{"_index":243,"title":{},"contents":{"cie-inspect.html":{"position":[[269,4]]},"contrast.html":{"position":[[1240,4]]}}}],["93.3884904256",{"_index":278,"title":{},"contents":{"cie-inspect.html":{"position":[[1801,14]]}}}],["94.7077811222",{"_index":286,"title":{},"contents":{"cie-inspect.html":{"position":[[2238,14]]}}}],["95.228994537",{"_index":260,"title":{},"contents":{"cie-inspect.html":{"position":[[950,14]]}}}],["97.6071273304",{"_index":262,"title":{},"contents":{"cie-inspect.html":{"position":[[1004,15]]}}}],["99.5745966976deg",{"_index":295,"title":{},"contents":{"cie-inspect.html":{"position":[[2781,17]]}}}],["_(ツ)_",{"_index":182,"title":{},"contents":{"CHANGELOG.html":{"position":[[877,9]]}}}],["abil",{"_index":5,"title":{},"contents":{"adjust.html":{"position":[[58,7]]}}}],["abov",{"_index":493,"title":{},"contents":{"LICENSE.html":{"position":[[460,5],[1140,6]]}}}],["accept",{"_index":161,"title":{},"contents":{"CHANGELOG.html":{"position":[[161,7]]}}}],["access",{"_index":301,"title":{},"contents":{"contrast.html":{"position":[[69,14]]},"index.html":{"position":[[212,6]]}}}],["achiev",{"_index":209,"title":{},"contents":{"cie-formats.html":{"position":[[523,7]]}}}],["action",{"_index":557,"title":{},"contents":{"LICENSE.html":{"position":[[1947,6]]}}}],["activ",{"_index":501,"title":{},"contents":{"LICENSE.html":{"position":[[646,10],[662,8]]}}}],["add",{"_index":103,"title":{},"contents":{"adjust.html":{"position":[[3700,3]]},"CHANGELOG.html":{"position":[[520,3]]}}}],["adjust",{"_index":9,"title":{},"contents":{"adjust.html":{"position":[[104,6],[276,8],[427,8],[1112,8],[1121,6],[1204,8],[1355,8],[1390,6],[1486,6],[1576,6],[1672,6],[1719,6],[1762,6],[2074,8],[2225,8],[2530,6],[3179,12],[3816,8],[3855,11],[3915,11],[3974,11],[4041,11],[4146,11],[4171,7],[4424,7],[4672,6]]},"CHANGELOG.html":{"position":[[462,12],[508,8],[668,6]]},"cie-formats.html":{"position":[[273,11]]},"index.html":{"position":[[147,10],[486,11],[1637,11],[1674,8],[1740,6],[2028,11]]}}}],["advantag",{"_index":3,"title":{},"contents":{"adjust.html":{"position":[[28,9]]}}}],["affect",{"_index":534,"title":{},"contents":{"LICENSE.html":{"position":[[1489,8]]}}}],["again",{"_index":413,"title":{},"contents":{"index.html":{"position":[[692,6]]}}}],["against",{"_index":303,"title":{},"contents":{"contrast.html":{"position":[[332,7]]}}}],["agreement",{"_index":536,"title":{},"contents":{"LICENSE.html":{"position":[[1546,9]]}}}],["alpha",{"_index":216,"title":{},"contents":{"cie-formats.html":{"position":[[938,5],[1699,5],[1857,5]]}}}],["amend",{"_index":567,"title":{},"contents":{"LICENSE.html":{"position":[[2200,7]]}}}],["amount",{"_index":66,"title":{},"contents":{"adjust.html":{"position":[[1181,7],[1416,6],[1509,6],[1694,6],[1741,6],[3688,6],[3721,6]]}}}],["and/or",{"_index":487,"title":{},"contents":{"LICENSE.html":{"position":[[317,6]]}}}],["angl",{"_index":49,"title":{},"contents":{"adjust.html":{"position":[[679,7],[701,5]]},"CHANGELOG.html":{"position":[[173,5]]},"cie-formats.html":{"position":[[900,5]]}}}],["anoth",{"_index":8,"title":{},"contents":{"adjust.html":{"position":[[93,7]]},"index.html":{"position":[[675,7]]}}}],["anyon",{"_index":499,"title":{},"contents":{"LICENSE.html":{"position":[[624,6]]}}}],["applic",{"_index":531,"title":{},"contents":{"LICENSE.html":{"position":[[1345,11]]}}}],["argument",{"_index":26,"title":{},"contents":{"adjust.html":{"position":[[296,9],[1224,9],[2094,9]]}}}],["aris",{"_index":560,"title":{},"contents":{"LICENSE.html":{"position":[[1986,7]]}}}],["array",{"_index":446,"title":{},"contents":{"index.html":{"position":[[2308,5]]}}}],["ask",{"_index":336,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[143,3]]}}}],["associ",{"_index":477,"title":{},"contents":{"LICENSE.html":{"position":[[121,10]]}}}],["atkin",{"_index":408,"title":{},"contents":{"index.html":{"position":[[421,7]]}}}],["author",{"_index":550,"title":{},"contents":{"LICENSE.html":{"position":[[1851,7]]}}}],["avail",{"_index":101,"title":{},"contents":{"adjust.html":{"position":[[3647,9]]}}}],["b",{"_index":54,"title":{},"contents":{"adjust.html":{"position":[[820,3],[850,1],[1701,3],[1730,1],[2708,3],[2740,1]]},"CHANGELOG.html":{"position":[[332,3]]},"cie-formats.html":{"position":[[1598,1],[1655,1]]},"cie-inspect.html":{"position":[[1455,3],[1546,3],[1584,2],[1730,2]]}}}],["back",{"_index":205,"title":{},"contents":{"cie-formats.html":{"position":[[439,4]]},"index.html":{"position":[[687,4]]}}}],["base",{"_index":85,"title":{},"contents":{"adjust.html":{"position":[[3192,5],[3321,5]]},"CHANGELOG.html":{"position":[[434,5],[731,5]]},"cie-formats.html":{"position":[[94,5]]},"contrast.html":{"position":[[309,4],[506,4]]},"index.html":{"position":[[1125,5],[1891,5]]}}}],["be",{"_index":35,"title":{},"contents":{"adjust.html":{"position":[[421,5],[1349,5],[2219,5],[3810,5]]},"LICENSE.html":{"position":[[771,5]]}}}],["befor",{"_index":341,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[207,6]]}}}],["best",{"_index":172,"title":{},"contents":{"CHANGELOG.html":{"position":[[383,4]]},"contrast.html":{"position":[[236,4],[781,4]]},"CONTRIBUTING.html":{"position":[[90,4],[406,4]]},"index.html":{"position":[[1225,4]]}}}],["better",{"_index":305,"title":{},"contents":{"contrast.html":{"position":[[380,6]]}}}],["between",{"_index":39,"title":{},"contents":{"adjust.html":{"position":[[496,7]]},"index.html":{"position":[[450,7]]}}}],["bf85f4",{"_index":114,"title":{},"contents":{"adjust.html":{"position":[[4467,8],[4820,7]]}}}],["big",{"_index":344,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[251,3]]}}}],["black",{"_index":304,"title":{},"contents":{"contrast.html":{"position":[[353,7],[399,5],[762,5],[1048,6]]},"index.html":{"position":[[1206,5]]}}}],["blend",{"_index":148,"title":{},"contents":{"CHANGELOG.html":{"position":[[0,5]]},"CONTRIBUTING.html":{"position":[[16,5]]},"index.html":{"position":[[25,5],[191,5],[2356,8]]}}}],["blend.a($color",{"_index":430,"title":{},"contents":{"index.html":{"position":[[1523,16]]}}}],["blend.a(deeppink",{"_index":267,"title":{},"contents":{"cie-inspect.html":{"position":[[1299,18]]}}}],["blend.a(papayawhip",{"_index":264,"title":{},"contents":{"cie-inspect.html":{"position":[[1204,20]]}}}],["blend.a(rebeccapurpl",{"_index":265,"title":{},"contents":{"cie-inspect.html":{"position":[[1240,23]]}}}],["blend.a(yellow",{"_index":266,"title":{},"contents":{"cie-inspect.html":{"position":[[1272,16]]}}}],["blend.adjust($color",{"_index":436,"title":{},"contents":{"index.html":{"position":[[1758,20]]}}}],["blend.adjust(rebeccapurpl",{"_index":68,"title":{},"contents":{"adjust.html":{"position":[[1826,27],[1877,27],[2925,27],[2982,27]]}}}],["blend.b($color",{"_index":431,"title":{},"contents":{"index.html":{"position":[[1540,16]]}}}],["blend.b(deeppink",{"_index":275,"title":{},"contents":{"cie-inspect.html":{"position":[[1696,18]]}}}],["blend.b(papayawhip",{"_index":272,"title":{},"contents":{"cie-inspect.html":{"position":[[1601,20]]}}}],["blend.b(rebeccapurpl",{"_index":273,"title":{},"contents":{"cie-inspect.html":{"position":[[1637,23]]}}}],["blend.b(yellow",{"_index":274,"title":{},"contents":{"cie-inspect.html":{"position":[[1669,16]]}}}],["blend.chroma($color",{"_index":432,"title":{},"contents":{"index.html":{"position":[[1557,21]]}}}],["blend.chroma(deeppink",{"_index":283,"title":{},"contents":{"cie-inspect.html":{"position":[[2124,23]]}}}],["blend.chroma(papayawhip",{"_index":280,"title":{},"contents":{"cie-inspect.html":{"position":[[2014,25]]}}}],["blend.chroma(rebeccapurpl",{"_index":281,"title":{},"contents":{"cie-inspect.html":{"position":[[2055,28]]}}}],["blend.chroma(yellow",{"_index":282,"title":{},"contents":{"cie-inspect.html":{"position":[[2092,21]]}}}],["blend.color(display",{"_index":450,"title":{},"contents":{"index.html":{"position":[[2408,19]]}}}],["blend.color(rec",{"_index":455,"title":{},"contents":{"index.html":{"position":[[2453,15]]}}}],["blend.contrast($color",{"_index":427,"title":{},"contents":{"index.html":{"position":[[1239,23],[1283,22],[1372,22]]}}}],["blend.contrast(papayawhip",{"_index":317,"title":{},"contents":{"contrast.html":{"position":[[804,27],[861,26],[956,26]]}}}],["blend.from($color",{"_index":441,"title":{},"contents":{"index.html":{"position":[[1988,18],[2053,18],[2130,18],[2193,18]]}}}],["blend.from(rebeccapurpl",{"_index":106,"title":{},"contents":{"adjust.html":{"position":[[4099,25],[4179,25],[4270,25],[4350,25]]}}}],["blend.get($color",{"_index":460,"title":{},"contents":{"index.html":{"position":[[2519,17],[2545,17],[2571,17]]}}}],["blend.hue($color",{"_index":433,"title":{},"contents":{"index.html":{"position":[[1579,18]]}}}],["blend.hue(deeppink",{"_index":292,"title":{},"contents":{"cie-inspect.html":{"position":[[2666,20]]}}}],["blend.hue(papayawhip",{"_index":289,"title":{},"contents":{"cie-inspect.html":{"position":[[2565,22]]}}}],["blend.hue(rebeccapurpl",{"_index":290,"title":{},"contents":{"cie-inspect.html":{"position":[[2603,25]]}}}],["blend.hue(yellow",{"_index":291,"title":{},"contents":{"cie-inspect.html":{"position":[[2637,18]]}}}],["blend.hwb(120deg",{"_index":448,"title":{},"contents":{"index.html":{"position":[[2381,16]]}}}],["blend.lab(32.39",{"_index":227,"title":{},"contents":{"cie-formats.html":{"position":[[1818,16],[1878,16]]}}}],["blend.lab(60",{"_index":424,"title":{},"contents":{"index.html":{"position":[[1002,13],[1061,13]]}}}],["blend.lch(30",{"_index":422,"title":{},"contents":{"index.html":{"position":[[979,13]]}}}],["blend.lch(32.39",{"_index":221,"title":{},"contents":{"cie-formats.html":{"position":[[1094,16],[1151,16]]}}}],["blend.lch(60",{"_index":425,"title":{},"contents":{"index.html":{"position":[[1025,13]]}}}],["blend.lightness($color",{"_index":429,"title":{},"contents":{"index.html":{"position":[[1498,24]]}}}],["blend.lightness(deeppink",{"_index":259,"title":{},"contents":{"cie-inspect.html":{"position":[[883,26]]}}}],["blend.lightness(papayawhip",{"_index":256,"title":{},"contents":{"cie-inspect.html":{"position":[[764,28]]}}}],["blend.lightness(rebeccapurpl",{"_index":257,"title":{},"contents":{"cie-inspect.html":{"position":[[808,31]]}}}],["blend.lightness(yellow",{"_index":258,"title":{},"contents":{"cie-inspect.html":{"position":[[848,24]]}}}],["blend.scale($color",{"_index":438,"title":{},"contents":{"index.html":{"position":[[1822,19]]}}}],["blend.set($color",{"_index":435,"title":{},"contents":{"index.html":{"position":[[1705,17]]}}}],["blend.set(rebeccapurpl",{"_index":60,"title":{},"contents":{"adjust.html":{"position":[[957,24],[1007,24]]}}}],["blend.string($color",{"_index":462,"title":{},"contents":{"index.html":{"position":[[2623,20],[2652,20],[2681,20]]}}}],["both",{"_index":56,"title":{},"contents":{"adjust.html":{"position":[[897,4],[1769,4],[2818,4]]},"cie-formats.html":{"position":[[1661,4]]}}}],["break",{"_index":151,"title":{},"contents":{"CHANGELOG.html":{"position":[[36,9]]}}}],["browser",{"_index":195,"title":{},"contents":{"cie-formats.html":{"position":[[212,9]]},"index.html":{"position":[[566,9]]}}}],["bug",{"_index":335,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[130,4]]}}}],["bugfix",{"_index":351,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[320,7]]}}}],["build",{"_index":375,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[758,5]]}}}],["built",{"_index":231,"title":{},"contents":{"cie-inspect.html":{"position":[[34,5],[565,5],[2388,5]]}}}],["c",{"_index":47,"title":{},"contents":{"adjust.html":{"position":[[646,2],[1032,3],[1534,2],[2484,2],[3402,1],[3539,1],[3581,1],[3667,1],[3885,3],[3889,1],[3891,2],[3905,1],[3934,1],[4208,2],[4303,2],[4380,2]]},"index.html":{"position":[[2075,2],[2156,2],[2216,2]]}}}],["c388f8",{"_index":113,"title":{},"contents":{"adjust.html":{"position":[[4448,8],[4751,7]]}}}],["chang",{"_index":96,"title":{},"contents":{"adjust.html":{"position":[[3423,6]]},"CONTRIBUTING.html":{"position":[[376,7],[671,7]]}}}],["changelog",{"_index":147,"title":{"CHANGELOG.html":{"position":[[0,9]]}},"contents":{"CHANGELOG.html":{"position":[[6,9]]}}}],["channel",{"_index":10,"title":{},"contents":{"adjust.html":{"position":[[111,9],[232,8],[793,7],[852,7],[912,8],[1150,8],[1784,8],[2016,8],[2833,8],[3357,8],[3384,7],[3458,7],[3507,7],[3569,7],[3627,7],[3876,8],[3936,7],[3995,7],[4163,7],[4326,7]]},"CHANGELOG.html":{"position":[[153,7],[494,7],[543,7],[601,7]]},"cie-formats.html":{"position":[[792,7],[1600,7]]},"cie-inspect.html":{"position":[[133,7],[705,7],[1153,7],[1550,7],[1958,7],[2512,7]]},"index.html":{"position":[[1665,8],[2045,7],[2179,7]]}}}],["charg",{"_index":472,"title":{},"contents":{"LICENSE.html":{"position":[[61,7]]}}}],["chri",{"_index":405,"title":{},"contents":{"index.html":{"position":[[400,5]]}}}],["chroma",{"_index":45,"title":{},"contents":{"adjust.html":{"position":[[555,8],[582,6],[949,7],[982,8],[1063,7],[1463,8],[1493,6],[2373,8],[2406,6],[4081,6],[4618,6]]},"CHANGELOG.html":{"position":[[336,8],[690,7]]},"cie-formats.html":{"position":[[503,6],[776,7],[844,6]]},"cie-inspect.html":{"position":[[1853,8],[1949,8],[1992,7],[2163,7]]},"index.html":{"position":[[1692,6],[1723,8],[1975,6]]}}}],["cie",{"_index":159,"title":{},"contents":{"CHANGELOG.html":{"position":[[123,3],[675,3]]},"cie-formats.html":{"position":[[447,3],[572,3]]},"index.html":{"position":[[905,5],[963,4],[2272,3]]}}}],["circumst",{"_index":533,"title":{},"contents":{"LICENSE.html":{"position":[[1389,13]]}}}],["claim",{"_index":553,"title":{},"contents":{"LICENSE.html":{"position":[[1898,6]]}}}],["claus",{"_index":521,"title":{},"contents":{"LICENSE.html":{"position":[[1133,6]]}}}],["clone",{"_index":357,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[449,5]]}}}],["closest",{"_index":211,"title":{},"contents":{"cie-formats.html":{"position":[[554,7]]}}}],["code",{"_index":370,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[666,4],[817,4],[961,4]]}}}],["codebas",{"_index":366,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[579,8]]}}}],["color",{"_index":1,"title":{"adjust.html":{"position":[[9,6]]},"cie-inspect.html":{"position":[[11,6]]},"contrast.html":{"position":[[0,5]]}},"contents":{"adjust.html":{"position":[[9,6],[45,5],[82,5],[164,6],[285,6],[382,7],[390,7],[415,5],[1213,6],[1310,7],[1318,7],[1343,5],[2083,6],[2180,7],[2188,7],[2213,5],[3227,5],[3771,7],[3779,7],[3804,5],[4011,7],[4029,5],[4540,5]]},"CHANGELOG.html":{"position":[[257,5],[301,5],[427,6],[643,5],[744,6],[837,5]]},"cie-formats.html":{"position":[[61,5],[235,5],[390,5],[576,6],[682,6],[1023,7],[1351,5],[1506,6],[2059,5]]},"cie-inspect.html":{"position":[[11,6],[91,6],[194,7],[202,5],[622,7],[630,7],[647,5],[720,5],[1082,7],[1090,7],[1107,5],[1168,5],[1479,7],[1487,7],[1504,5],[1565,5],[1882,7],[1890,7],[1907,5],[1973,5],[2439,7],[2447,7],[2464,5],[2527,5]]},"contrast.html":{"position":[[0,5],[146,5],[179,5],[265,7],[293,7],[301,7],[314,5],[457,7],[511,6],[594,5],[656,7],[1108,5],[1173,5]]},"index.html":{"position":[[35,5],[67,5],[122,5],[141,5],[270,7],[312,5],[458,5],[650,5],[921,5],[955,7],[1110,5],[1155,5],[1345,5],[1438,6],[1478,7],[1610,6],[1631,5],[1874,5],[1945,5],[2276,7]]}}}],["color.hu",{"_index":288,"title":{},"contents":{"cie-inspect.html":{"position":[[2397,11]]}}}],["color.light",{"_index":255,"title":{},"contents":{"cie-inspect.html":{"position":[[574,17]]}}}],["colormetr",{"_index":210,"title":{},"contents":{"cie-formats.html":{"position":[[542,11]]}}}],["commit",{"_index":381,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[873,6]]}}}],["commun",{"_index":385,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[928,9]]}}}],["compact",{"_index":83,"title":{},"contents":{"adjust.html":{"position":[[3156,7]]}}}],["compar",{"_index":309,"title":{},"contents":{"contrast.html":{"position":[[468,7]]}}}],["compet",{"_index":528,"title":{},"contents":{"LICENSE.html":{"position":[[1278,9]]}}}],["compil",{"_index":62,"title":{},"contents":{"adjust.html":{"position":[[1047,8],[1921,8],[3026,8],[4393,8]]},"cie-formats.html":{"position":[[332,8],[1197,8],[1921,8]]},"cie-inspect.html":{"position":[[916,8],[1324,8],[1721,8],[2154,8],[2693,8]]},"contrast.html":{"position":[[1018,8]]},"CONTRIBUTING.html":{"position":[[805,7]]}}}],["complic",{"_index":154,"title":{},"contents":{"CHANGELOG.html":{"position":[[58,11]]}}}],["condit",{"_index":492,"title":{},"contents":{"LICENSE.html":{"position":[[444,11],[1034,9]]}}}],["conduct",{"_index":383,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[897,7],[969,8]]}}}],["connect",{"_index":562,"title":{},"contents":{"LICENSE.html":{"position":[[2013,10]]}}}],["consist",{"_index":12,"title":{},"contents":{"adjust.html":{"position":[[132,10]]}}}],["contract",{"_index":558,"title":{},"contents":{"LICENSE.html":{"position":[[1957,9]]}}}],["contrast",{"_index":170,"title":{"contrast.html":{"position":[[6,8]]}},"contents":{"CHANGELOG.html":{"position":[[360,10],[388,8]]},"contrast.html":{"position":[[6,8],[22,8],[131,10],[185,10],[241,8],[323,8],[387,8],[488,8],[539,8],[629,8],[692,9],[747,9],[786,8],[843,8],[933,8],[1027,9],[1114,10]]},"index.html":{"position":[[172,8],[1116,8],[1161,10],[1182,10],[1230,8],[1274,8],[1356,8]]}}}],["contribut",{"_index":325,"title":{"CONTRIBUTING.html":{"position":[[0,12]]}},"contents":{"CONTRIBUTING.html":{"position":[[0,12]]}}}],["convers",{"_index":197,"title":{},"contents":{"cie-formats.html":{"position":[[247,10]]},"index.html":{"position":[[355,10],[439,10],[534,10],[927,10]]}}}],["convert",{"_index":175,"title":{},"contents":{"CHANGELOG.html":{"position":[[627,8]]},"cie-formats.html":{"position":[[139,9],[396,9],[1031,9]]},"index.html":{"position":[[637,10]]}}}],["copi",{"_index":475,"title":{},"contents":{"LICENSE.html":{"position":[[95,4],[263,5],[329,6],[535,6]]}}}],["copyright",{"_index":466,"title":{},"contents":{"LICENSE.html":{"position":[[0,9],[466,9],[1862,9]]}}}],["court",{"_index":527,"title":{},"contents":{"LICENSE.html":{"position":[[1269,5]]}}}],["css",{"_index":15,"title":{},"contents":{"adjust.html":{"position":[[160,3],[1043,3],[1917,3],[3022,3],[3214,3],[3334,3],[4389,3],[4486,3]]},"CHANGELOG.html":{"position":[[740,3]]},"cie-formats.html":{"position":[[107,3],[625,3],[1193,3],[1275,3],[1917,3],[1999,3]]},"cie-inspect.html":{"position":[[912,3],[1320,3],[1717,3],[2150,3],[2689,3]]},"contrast.html":{"position":[[92,3],[142,3],[1014,3],[1104,3]]},"index.html":{"position":[[31,3],[63,3],[118,3]]}}}],["current",{"_index":97,"title":{},"contents":{"adjust.html":{"position":[[3437,7],[3499,7],[3737,7]]}}}],["cyan",{"_index":428,"title":{},"contents":{"index.html":{"position":[[1329,6]]}}}],["damag",{"_index":554,"title":{},"contents":{"LICENSE.html":{"position":[[1905,7]]}}}],["dart",{"_index":362,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[524,4]]},"index.html":{"position":[[52,4],[853,4]]}}}],["data",{"_index":203,"title":{},"contents":{"cie-formats.html":{"position":[[364,4]]}}}],["deal",{"_index":478,"title":{},"contents":{"LICENSE.html":{"position":[[173,4],[2062,8]]}}}],["declar",{"_index":514,"title":{},"contents":{"LICENSE.html":{"position":[[854,11],[915,11],[1230,8],[1441,8]]}}}],["deeppink",{"_index":248,"title":{},"contents":{"cie-inspect.html":{"position":[[384,8],[873,9],[1020,9],[1289,9],[1418,9],[1686,9],[1816,9],[2114,9],[2253,9],[2656,9],[2799,9]]}}}],["default",{"_index":306,"title":{},"contents":{"contrast.html":{"position":[[417,8],[795,8],[1039,8],[1245,7]]},"index.html":{"position":[[1198,7]]}}}],["defin",{"_index":76,"title":{},"contents":{"adjust.html":{"position":[[2872,7]]},"cie-formats.html":{"position":[[670,6],[1494,6]]},"contrast.html":{"position":[[169,7]]}}}],["deg",{"_index":165,"title":{},"contents":{"CHANGELOG.html":{"position":[[210,4]]}}}],["degre",{"_index":67,"title":{},"contents":{"adjust.html":{"position":[[1606,7]]}}}],["demo",{"_index":235,"title":{},"contents":{"cie-inspect.html":{"position":[[159,6]]},"CONTRIBUTING.html":{"position":[[825,5]]}}}],["depend",{"_index":361,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[506,12]]}}}],["deriv",{"_index":566,"title":{},"contents":{"LICENSE.html":{"position":[[2170,7]]}}}],["design",{"_index":299,"title":{},"contents":{"contrast.html":{"position":[[48,6]]}}}],["dev",{"_index":419,"title":{},"contents":{"index.html":{"position":[[837,3]]}}}],["develop",{"_index":90,"title":{},"contents":{"adjust.html":{"position":[[3299,9]]},"CONTRIBUTING.html":{"position":[[494,11]]}}}],["differ",{"_index":207,"title":{},"contents":{"cie-formats.html":{"position":[[467,9]]},"index.html":{"position":[[720,12]]}}}],["directori",{"_index":369,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[645,10]]}}}],["discuss",{"_index":339,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[181,7],[414,7]]}}}],["display",{"_index":461,"title":{},"contents":{"index.html":{"position":[[2589,8],[2702,8]]}}}],["distanc",{"_index":73,"title":{},"contents":{"adjust.html":{"position":[[2307,8],[2440,8],[2679,8],[2769,8]]}}}],["distribut",{"_index":485,"title":{},"contents":{"LICENSE.html":{"position":[[293,11]]}}}],["doc",{"_index":374,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[748,4]]}}}],["document",{"_index":352,"title":{"index.html":{"position":[[19,13]]}},"contents":{"CONTRIBUTING.html":{"position":[[331,14],[768,13]]},"LICENSE.html":{"position":[[132,13]]}}}],["down",{"_index":65,"title":{},"contents":{"adjust.html":{"position":[[1165,4],[2031,4]]}}}],["download",{"_index":415,"title":{},"contents":{"index.html":{"position":[[739,8]]}}}],["e.g",{"_index":108,"title":{},"contents":{"adjust.html":{"position":[[4238,4]]},"CHANGELOG.html":{"position":[[184,5]]},"index.html":{"position":[[2105,4]]}}}],["e3c0ff",{"_index":79,"title":{},"contents":{"adjust.html":{"position":[[3053,8],[3073,8]]}}}],["each",{"_index":91,"title":{},"contents":{"adjust.html":{"position":[[3352,4]]},"index.html":{"position":[[626,4]]},"LICENSE.html":{"position":[[1511,4]]}}}],["eagerli",{"_index":191,"title":{},"contents":{"cie-formats.html":{"position":[[131,7]]}}}],["earli",{"_index":395,"title":{},"contents":{"index.html":{"position":[[206,5]]}}}],["econom",{"_index":508,"title":{},"contents":{"LICENSE.html":{"position":[[745,9]]}}}],["end",{"_index":174,"title":{},"contents":{"CHANGELOG.html":{"position":[[588,5]]}}}],["endang",{"_index":503,"title":{},"contents":{"LICENSE.html":{"position":[[685,9]]}}}],["enforc",{"_index":522,"title":{},"contents":{"LICENSE.html":{"position":[[1147,15],[1575,11]]}}}],["error",{"_index":55,"title":{},"contents":{"adjust.html":{"position":[[879,6],[1748,6],[2798,6],[2850,6],[3103,7]]},"contrast.html":{"position":[[1155,7]]}}}],["ethic",{"_index":564,"title":{},"contents":{"LICENSE.html":{"position":[[2119,7]]}}}],["event",{"_index":549,"title":{},"contents":{"LICENSE.html":{"position":[[1835,5]]}}}],["exactli",{"_index":88,"title":{},"contents":{"adjust.html":{"position":[[3284,8]]}}}],["exampl",{"_index":58,"title":{},"contents":{"adjust.html":{"position":[[929,7],[1801,7],[2894,7],[4053,7]]},"cie-formats.html":{"position":[[1052,7],[1776,7]]},"cie-inspect.html":{"position":[[726,7],[1174,7],[1571,7],[1979,7],[2533,7]]},"contrast.html":{"position":[[734,7]]}}}],["expect",{"_index":11,"title":{},"contents":{"adjust.html":{"position":[[125,6]]}}}],["experi",{"_index":379,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[843,11]]}}}],["express",{"_index":542,"title":{},"contents":{"LICENSE.html":{"position":[[1691,7]]}}}],["extent",{"_index":524,"title":{},"contents":{"LICENSE.html":{"position":[[1220,6],[1602,6]]}}}],["extern",{"_index":18,"title":{},"contents":{"adjust.html":{"position":[[179,10],[4504,10]]},"cie-formats.html":{"position":[[643,10],[1299,10],[2023,10]]},"contrast.html":{"position":[[110,10],[1125,10]]}}}],["fall",{"_index":213,"title":{},"contents":{"cie-formats.html":{"position":[[588,4]]}}}],["featur",{"_index":333,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[114,8],[198,8],[391,9]]},"index.html":{"position":[[236,9]]}}}],["ff1493",{"_index":249,"title":{},"contents":{"cie-inspect.html":{"position":[[393,7]]}}}],["ffefd5",{"_index":238,"title":{},"contents":{"cie-inspect.html":{"position":[[228,7]]},"contrast.html":{"position":[[1199,7]]}}}],["ffff00",{"_index":245,"title":{},"contents":{"cie-inspect.html":{"position":[[340,7]]}}}],["file",{"_index":334,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[123,4]]},"index.html":{"position":[[752,5]]},"LICENSE.html":{"position":[[146,5]]}}}],["final",{"_index":105,"title":{},"contents":{"adjust.html":{"position":[[4023,5]]},"contrast.html":{"position":[[561,5]]}}}],["first",{"_index":312,"title":{},"contents":{"contrast.html":{"position":[[588,5],[706,5],[915,5],[949,6],[1072,6],[1338,5]]},"CONTRIBUTING.html":{"position":[[434,6]]},"index.html":{"position":[[1339,5]]}}}],["fit",{"_index":545,"title":{},"contents":{"LICENSE.html":{"position":[[1775,7]]}}}],["fluidli",{"_index":72,"title":{},"contents":{"adjust.html":{"position":[[1991,7]]},"CHANGELOG.html":{"position":[[568,7]]}}}],["focu",{"_index":158,"title":{},"contents":{"CHANGELOG.html":{"position":[[105,5]]}}}],["focus",{"_index":445,"title":{},"contents":{"index.html":{"position":[[2261,7]]}}}],["folder",{"_index":367,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[604,7]]}}}],["follow",{"_index":100,"title":{},"contents":{"adjust.html":{"position":[[3587,8],[3673,8]]},"cie-inspect.html":{"position":[[184,9]]},"CONTRIBUTING.html":{"position":[[912,6]]},"LICENSE.html":{"position":[[434,9]]}}}],["format",{"_index":186,"title":{"cie-formats.html":{"position":[[10,7]]}},"contents":{"cie-formats.html":{"position":[[10,7],[423,6]]},"index.html":{"position":[[128,8],[665,6],[897,7],[2321,8],[2370,8]]}}}],["fraction",{"_index":219,"title":{},"contents":{"cie-formats.html":{"position":[[974,8],[1735,8]]},"index.html":{"position":[[1098,8]]}}}],["free",{"_index":471,"title":{},"contents":{"LICENSE.html":{"position":[[53,4]]}}}],["fullest",{"_index":538,"title":{},"contents":{"LICENSE.html":{"position":[[1594,7]]}}}],["function",{"_index":19,"title":{},"contents":{"adjust.html":{"position":[[190,9],[1102,9],[1973,9],[3093,9],[3121,9],[4524,9]]},"CHANGELOG.html":{"position":[[127,10]]},"cie-formats.html":{"position":[[80,9],[654,9],[1318,9],[1335,9],[1478,9],[2043,9]]},"cie-inspect.html":{"position":[[104,9],[439,9],[592,9],[1048,9],[1445,9],[1843,9],[2280,9],[2409,9]]},"contrast.html":{"position":[[121,9],[196,8],[1145,9]]},"index.html":{"position":[[181,9],[1172,9]]}}}],["furnish",{"_index":490,"title":{},"contents":{"LICENSE.html":{"position":[[399,9]]}}}],["gamut",{"_index":199,"title":{},"contents":{"cie-formats.html":{"position":[[267,5],[610,6]]},"index.html":{"position":[[480,5]]}}}],["gener",{"_index":6,"title":{},"contents":{"adjust.html":{"position":[[69,8],[610,10]]},"CHANGELOG.html":{"position":[[414,8]]},"cie-formats.html":{"position":[[872,10]]},"LICENSE.html":{"position":[[758,7]]}}}],["github",{"_index":331,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[68,6]]},"index.html":{"position":[[763,7]]}}}],["given",{"_index":27,"title":{},"contents":{"adjust.html":{"position":[[314,5],[1175,5],[1242,5],[1410,5],[1503,5],[1590,5],[1688,5],[1735,5],[2041,5],[2112,5],[2283,5],[2416,5],[2544,5],[2655,5],[2745,5]]},"contrast.html":{"position":[[623,5],[722,5]]}}}],["grad",{"_index":164,"title":{},"contents":{"CHANGELOG.html":{"position":[[201,5]]}}}],["grant",{"_index":470,"title":{},"contents":{"LICENSE.html":{"position":[[44,8]]}}}],["great",{"_index":338,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[166,5]]}}}],["group",{"_index":510,"title":{},"contents":{"LICENSE.html":{"position":[[801,7]]}}}],["guidelin",{"_index":386,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[938,10]]}}}],["h",{"_index":52,"title":{},"contents":{"adjust.html":{"position":[[739,2],[1632,2],[1905,3],[2596,2],[3406,2],[3543,1],[3585,1],[3671,1],[3944,3],[3948,1],[3950,2],[3964,1],[3993,1],[4132,3],[4211,1],[4306,3],[4383,3]]},"index.html":{"position":[[2014,3],[2078,1],[2159,3],[2219,3]]}}}],["half",{"_index":109,"title":{},"contents":{"adjust.html":{"position":[[4243,5]]},"index.html":{"position":[[2110,5]]}}}],["happen",{"_index":350,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[306,7]]}}}],["harm",{"_index":498,"title":{},"contents":{"LICENSE.html":{"position":[[586,5],[695,5],[1128,4]]}}}],["help",{"_index":345,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[255,5]]}}}],["herebi",{"_index":469,"title":{},"contents":{"LICENSE.html":{"position":[[37,6]]}}}],["herman",{"_index":365,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[554,7]]}}}],["highest",{"_index":310,"title":{},"contents":{"contrast.html":{"position":[[480,7],[684,7],[835,7],[852,8],[1055,8],[1289,7]]},"index.html":{"position":[[1266,7]]}}}],["hipocrat",{"_index":463,"title":{"LICENSE.html":{"position":[[0,10]]}},"contents":{}}],["hippocrat",{"_index":563,"title":{},"contents":{"LICENSE.html":{"position":[[2093,11]]}}}],["holder",{"_index":551,"title":{},"contents":{"LICENSE.html":{"position":[[1872,7]]}}}],["hsl",{"_index":234,"title":{},"contents":{"cie-inspect.html":{"position":[[75,3]]}}}],["hsl(0",{"_index":321,"title":{},"contents":{"contrast.html":{"position":[[1274,6],[1320,6]]}}}],["hsl(199",{"_index":132,"title":{},"contents":{"adjust.html":{"position":[[4711,8]]}}}],["hsl(270",{"_index":121,"title":{},"contents":{"adjust.html":{"position":[[4595,8]]},"cie-formats.html":{"position":[[1396,8],[2104,8]]},"cie-inspect.html":{"position":[[314,8]]},"contrast.html":{"position":[[1370,8]]}}}],["hsl(271",{"_index":144,"title":{},"contents":{"adjust.html":{"position":[[4847,8]]}}}],["hsl(272",{"_index":137,"title":{},"contents":{"adjust.html":{"position":[[4778,8]]}}}],["hsl(273",{"_index":126,"title":{},"contents":{"adjust.html":{"position":[[4653,8]]}}}],["hsl(328",{"_index":251,"title":{},"contents":{"cie-inspect.html":{"position":[[419,8]]}}}],["hsl(37",{"_index":242,"title":{},"contents":{"cie-inspect.html":{"position":[[255,7]]},"contrast.html":{"position":[[1226,7]]}}}],["hsl(60",{"_index":247,"title":{},"contents":{"cie-inspect.html":{"position":[[365,7]]}}}],["hsl/hwb",{"_index":254,"title":{},"contents":{"cie-inspect.html":{"position":[[498,7],[2327,7]]}}}],["hsla(270",{"_index":226,"title":{},"contents":{"cie-formats.html":{"position":[[1453,9],[2161,9]]}}}],["https://ethicalsource.dev",{"_index":565,"title":{},"contents":{"LICENSE.html":{"position":[[2142,27]]}}}],["https://www.un.org/en/univers",{"_index":516,"title":{},"contents":{"LICENSE.html":{"position":[[882,32]]}}}],["hue",{"_index":48,"title":{},"contents":{"adjust.html":{"position":[[668,5],[691,3],[1556,5],[1583,3],[1821,4],[1854,5],[1937,4],[2506,5],[2537,3],[2568,3],[4679,3]]},"CHANGELOG.html":{"position":[[149,3],[349,5],[702,3]]},"cie-formats.html":{"position":[[788,3],[890,3]]},"cie-inspect.html":{"position":[[2290,5],[2304,3],[2335,4],[2506,5],[2546,4],[2702,4]]},"index.html":{"position":[[1747,3],[1779,5]]}}}],["human",{"_index":515,"title":{},"contents":{"LICENSE.html":{"position":[[869,5],[927,5]]}}}],["idea",{"_index":326,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[22,6]]}}}],["illeg",{"_index":525,"title":{},"contents":{"LICENSE.html":{"position":[[1239,7],[1450,7]]}}}],["impact",{"_index":568,"title":{},"contents":{"LICENSE.html":{"position":[[2221,6]]}}}],["impli",{"_index":543,"title":{},"contents":{"LICENSE.html":{"position":[[1702,8]]}}}],["import",{"_index":298,"title":{},"contents":{"contrast.html":{"position":[[34,9]]},"index.html":{"position":[[841,6]]}}}],["includ",{"_index":393,"title":{},"contents":{"index.html":{"position":[[98,7],[2296,8]]},"LICENSE.html":{"position":[[215,9],[519,8],[1711,9]]}}}],["individu",{"_index":21,"title":{},"contents":{"adjust.html":{"position":[[210,10],[1128,10]]},"LICENSE.html":{"position":[[786,11]]}}}],["initi",{"_index":33,"title":{},"contents":{"adjust.html":{"position":[[402,7],[1330,7],[2200,7],[3791,7]]},"index.html":{"position":[[2235,7]]}}}],["inspect",{"_index":168,"title":{"cie-inspect.html":{"position":[[0,10]]}},"contents":{"CHANGELOG.html":{"position":[[268,7]]},"cie-inspect.html":{"position":[[0,10],[53,10],[172,7],[656,7],[1116,7],[1513,7],[1916,7],[2473,7]]},"index.html":{"position":[[1427,10],[1445,7],[1486,9]]}}}],["instal",{"_index":360,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[486,7]]},"index.html":{"position":[[774,7],[803,7]]}}}],["interact",{"_index":399,"title":{},"contents":{"index.html":{"position":[[296,11]]}}}],["interpret",{"_index":440,"title":{},"contents":{"index.html":{"position":[[1906,14]]}}}],["involv",{"_index":198,"title":{},"contents":{"cie-formats.html":{"position":[[258,8]]}}}],["issu",{"_index":327,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[29,7],[75,6],[428,5]]}}}],["it’",{"_index":355,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[401,4]]}}}],["js",{"_index":404,"title":{},"contents":{"index.html":{"position":[[394,2]]}}}],["jump",{"_index":348,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[282,4],[351,4]]}}}],["jurisdict",{"_index":529,"title":{},"contents":{"LICENSE.html":{"position":[[1288,13]]}}}],["keyword",{"_index":28,"title":{},"contents":{"adjust.html":{"position":[[323,8],[536,7],[649,7],[742,7],[1251,8],[1444,7],[1537,7],[1635,7],[2121,8],[2354,7],[2487,7],[2599,7]]}}}],["kind",{"_index":541,"title":{},"contents":{"LICENSE.html":{"position":[[1685,5]]}}}],["knowingli",{"_index":502,"title":{},"contents":{"LICENSE.html":{"position":[[675,9]]}}}],["l",{"_index":43,"title":{},"contents":{"adjust.html":{"position":[[533,2],[1441,2],[2351,2],[3010,3],[3397,2],[3535,1],[3577,1],[3663,1],[3825,3],[3829,1],[3831,2],[3845,1],[3874,1],[4125,2],[4205,2],[4296,1]]},"index.html":{"position":[[2007,2],[2072,2],[2149,1]]}}}],["lab",{"_index":22,"title":{"cie-formats.html":{"position":[[0,3]]}},"contents":{"adjust.html":{"position":[[221,3],[787,3],[846,3],[902,3],[1139,3],[1679,3],[1726,3],[1774,3],[2005,3],[2646,3],[2736,3],[2823,3]]},"CHANGELOG.html":{"position":[[458,3]]},"cie-formats.html":{"position":[[0,3],[18,3],[1345,5],[1488,5],[1516,5],[1541,5],[1789,4],[1813,4],[1871,3],[1930,4],[1937,4],[1957,3],[2003,5],[2074,3],[2123,3]]},"cie-inspect.html":{"position":[[129,3],[1145,3],[1542,3]]},"index.html":{"position":[[887,3],[917,3],[1459,3],[1661,3],[2563,7],[2673,7]]}}}],["lab($lab",{"_index":166,"title":{},"contents":{"CHANGELOG.html":{"position":[[220,9]]}}}],["lab/lch",{"_index":253,"title":{},"contents":{"cie-inspect.html":{"position":[[461,7],[685,7],[2296,7]]}}}],["law",{"_index":539,"title":{},"contents":{"LICENSE.html":{"position":[[1622,4]]}}}],["lch",{"_index":4,"title":{"cie-formats.html":{"position":[[6,3]]}},"contents":{"adjust.html":{"position":[[41,3],[228,3],[908,3],[1146,3],[1780,3],[2012,3],[2829,3],[3175,3],[4534,5]]},"CHANGELOG.html":{"position":[[143,5],[452,3],[652,3]]},"cie-formats.html":{"position":[[6,3],[26,3],[664,5],[692,5],[726,5],[1065,4],[1089,4],[1144,3],[1206,4],[1213,4],[1233,3],[1279,5],[1366,3],[1415,3],[2053,5]]},"cie-inspect.html":{"position":[[121,3],[1945,3],[2502,3]]},"index.html":{"position":[[308,3],[893,3],[911,3],[1453,3],[1655,3],[2537,7],[2644,7]]}}}],["lch($lch",{"_index":179,"title":{},"contents":{"CHANGELOG.html":{"position":[[800,9]]}}}],["lch/lab",{"_index":169,"title":{},"contents":{"CHANGELOG.html":{"position":[[276,7]]}}}],["lea",{"_index":401,"title":{},"contents":{"index.html":{"position":[[328,3]]}}}],["legibil",{"_index":300,"title":{},"contents":{"contrast.html":{"position":[[55,11]]}}}],["letter",{"_index":93,"title":{},"contents":{"adjust.html":{"position":[[3377,6]]}}}],["level",{"_index":16,"title":{},"contents":{"adjust.html":{"position":[[171,5]]},"CHANGELOG.html":{"position":[[751,5]]},"contrast.html":{"position":[[160,5]]},"index.html":{"position":[[80,5],[90,5],[1147,5],[1928,5],[2288,5]]}}}],["liabil",{"_index":555,"title":{},"contents":{"LICENSE.html":{"position":[[1922,10]]}}}],["liabl",{"_index":552,"title":{},"contents":{"LICENSE.html":{"position":[[1883,6]]}}}],["licens",{"_index":465,"title":{"LICENSE.html":{"position":[[15,7]]}},"contents":{"LICENSE.html":{"position":[[1199,7],[1329,8],[2105,7],[2134,7],[2191,8]]}}}],["license",{"_index":519,"title":{},"contents":{"LICENSE.html":{"position":[[1013,8]]}}}],["light",{"_index":36,"title":{},"contents":{"adjust.html":{"position":[[436,11],[470,9],[1364,11],[1397,9],[2234,11],[2270,9],[2914,10],[2953,11],[3042,10],[4737,9],[4806,9]]},"CHANGELOG.html":{"position":[[312,11],[679,10]]},"cie-formats.html":{"position":[[765,10],[808,9],[1580,10],[1615,9]]},"cie-inspect.html":{"position":[[449,11],[469,9],[506,10],[693,11],[739,10],[925,10]]},"index.html":{"position":[[1800,9],[1842,11]]}}}],["lighter",{"_index":437,"title":{},"contents":{"index.html":{"position":[[1814,7]]}}}],["lilley",{"_index":406,"title":{},"contents":{"index.html":{"position":[[406,6]]}}}],["limit",{"_index":481,"title":{},"contents":{"LICENSE.html":{"position":[[233,10],[1729,7],[2211,5]]}}}],["linear",{"_index":107,"title":{},"contents":{"adjust.html":{"position":[[4139,6]]},"index.html":{"position":[[2021,6]]}}}],["list",{"_index":173,"title":{},"contents":{"CHANGELOG.html":{"position":[[404,4]]},"cie-formats.html":{"position":[[732,6],[757,4],[1547,6],[1572,4]]},"contrast.html":{"position":[[257,4]]}}}],["mainli",{"_index":378,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[831,7]]}}}],["maintain",{"_index":204,"title":{},"contents":{"cie-formats.html":{"position":[[376,11]]}}}],["major",{"_index":354,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[370,5],[660,5]]}}}],["make",{"_index":349,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[294,4]]}}}],["mani",{"_index":396,"title":{},"contents":{"index.html":{"position":[[222,4]]}}}],["maroon",{"_index":318,"title":{},"contents":{"contrast.html":{"position":[[903,8],[998,7],[1064,7]]},"index.html":{"position":[[1306,7],[1395,7]]}}}],["match",{"_index":212,"title":{},"contents":{"cie-formats.html":{"position":[[562,5]]},"cie-inspect.html":{"position":[[540,5],[2363,5]]},"CONTRIBUTING.html":{"position":[[617,8]]}}}],["math",{"_index":193,"title":{},"contents":{"cie-formats.html":{"position":[[191,4],[324,4]]},"index.html":{"position":[[366,5],[545,4]]}}}],["meet",{"_index":316,"title":{},"contents":{"contrast.html":{"position":[[715,4]]}}}],["mental",{"_index":507,"title":{},"contents":{"LICENSE.html":{"position":[[737,7]]}}}],["merchant",{"_index":544,"title":{},"contents":{"LICENSE.html":{"position":[[1758,16]]}}}],["merg",{"_index":483,"title":{},"contents":{"LICENSE.html":{"position":[[277,6]]}}}],["mimic",{"_index":87,"title":{},"contents":{"adjust.html":{"position":[[3267,5]]}}}],["mirisuzanne/blend",{"_index":388,"title":{"index.html":{"position":[[0,18]]}},"contents":{"index.html":{"position":[[811,18]]}}}],["mit",{"_index":464,"title":{"LICENSE.html":{"position":[[11,3]]}},"contents":{"LICENSE.html":{"position":[[2187,3]]}}}],["modifi",{"_index":482,"title":{},"contents":{"LICENSE.html":{"position":[[269,7]]}}}],["modul",{"_index":302,"title":{},"contents":{"contrast.html":{"position":[[152,7]]},"index.html":{"position":[[73,6]]}}}],["more",{"_index":308,"title":{},"contents":{"contrast.html":{"position":[[452,4]]}}}],["mostli",{"_index":444,"title":{},"contents":{"index.html":{"position":[[2254,6]]}}}],["multipli",{"_index":99,"title":{},"contents":{"adjust.html":{"position":[[3556,8],[4313,8],[4340,9],[4457,9],[4797,8]]},"index.html":{"position":[[2166,8]]}}}],["name",{"_index":94,"title":{},"contents":{"adjust.html":{"position":[[3392,4]]}}}],["nation",{"_index":512,"title":{},"contents":{"LICENSE.html":{"position":[[836,7]]}}}],["new",{"_index":160,"title":{},"contents":{"CHANGELOG.html":{"position":[[138,4],[215,4],[263,4],[355,4],[409,4],[423,3],[615,4],[795,4]]},"CONTRIBUTING.html":{"position":[[387,3]]},"index.html":{"position":[[114,3],[137,3],[2317,3],[2365,4]]}}}],["noninfring",{"_index":548,"title":{},"contents":{"LICENSE.html":{"position":[[1812,16]]}}}],["note",{"_index":409,"title":{},"contents":{"index.html":{"position":[[429,4]]}}}],["notic",{"_index":494,"title":{},"contents":{"LICENSE.html":{"position":[[476,6],[503,6]]}}}],["now",{"_index":157,"title":{},"contents":{"CHANGELOG.html":{"position":[[100,4],[857,3]]}}}],["npm",{"_index":416,"title":{},"contents":{"index.html":{"position":[[786,3],[799,3]]}}}],["null",{"_index":37,"title":{},"contents":{"adjust.html":{"position":[[448,4],[564,4],[674,4],[765,4],[824,4],[1376,4],[1472,4],[1562,4],[1658,4],[1705,4],[2246,4],[2382,4],[2512,4],[2622,4],[2712,4]]}}}],["number",{"_index":46,"title":{},"contents":{"adjust.html":{"position":[[569,8],[603,6],[770,8],[808,6],[829,8],[867,6],[1381,8],[1477,8],[1567,8],[1596,6],[1663,8],[1710,8],[3475,6],[3523,6],[3836,6],[3847,7],[3896,6],[3907,7],[3955,6],[3966,7]]},"cie-formats.html":{"position":[[865,6],[929,8],[1666,7],[1690,8]]},"cie-inspect.html":{"position":[[672,8],[1132,8],[1529,8],[1932,8],[2489,8]]}}}],["obtain",{"_index":474,"title":{},"contents":{"LICENSE.html":{"position":[[83,9]]}}}],["oddbird",{"_index":387,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[953,7]]},"LICENSE.html":{"position":[[15,7]]}}}],["on",{"_index":7,"title":{},"contents":{"adjust.html":{"position":[[78,3]]},"CHANGELOG.html":{"position":[[584,3]]},"index.html":{"position":[[661,3]]}}}],["onc",{"_index":57,"title":{},"contents":{"adjust.html":{"position":[[924,4],[1796,4],[2845,4]]},"cie-formats.html":{"position":[[341,5]]}}}],["opac",{"_index":217,"title":{},"contents":{"cie-formats.html":{"position":[[944,8],[1136,7],[1705,8],[1863,7]]}}}],["open",{"_index":570,"title":{},"contents":{"LICENSE.html":{"position":[[2252,4]]}}}],["option",{"_index":156,"title":{},"contents":{"CHANGELOG.html":{"position":[[88,7]]},"contrast.html":{"position":[[340,12],[426,10],[518,10],[600,6],[668,6],[921,6]]}}}],["order",{"_index":30,"title":{},"contents":{"adjust.html":{"position":[[355,6],[1283,6],[2153,6]]},"CHANGELOG.html":{"position":[[659,5]]}}}],["origin",{"_index":202,"title":{},"contents":{"cie-formats.html":{"position":[[355,8],[486,9]]},"index.html":{"position":[[372,10]]}}}],["orr",{"_index":315,"title":{},"contents":{"contrast.html":{"position":[[702,3]]}}}],["other",{"_index":518,"title":{},"contents":{"LICENSE.html":{"position":[[1001,7],[1066,6]]}}}],["otherwis",{"_index":504,"title":{},"contents":{"LICENSE.html":{"position":[[704,9],[1975,10]]}}}],["out",{"_index":561,"title":{},"contents":{"LICENSE.html":{"position":[[2000,3]]}}}],["output",{"_index":155,"title":{},"contents":{"CHANGELOG.html":{"position":[[81,6]]},"cie-inspect.html":{"position":[[550,6],[2373,6]]},"index.html":{"position":[[2612,8]]}}}],["outsid",{"_index":214,"title":{},"contents":{"cie-formats.html":{"position":[[593,7]]}}}],["over",{"_index":153,"title":{},"contents":{"CHANGELOG.html":{"position":[[53,4]]}}}],["p3",{"_index":451,"title":{},"contents":{"index.html":{"position":[[2428,2],[2598,5],[2711,5]]}}}],["packag",{"_index":417,"title":{},"contents":{"index.html":{"position":[[790,8]]}}}],["papayawhip",{"_index":237,"title":{},"contents":{"cie-inspect.html":{"position":[[217,10],[752,11],[938,11],[1192,11],[1338,11],[1589,11],[1735,11],[2002,11],[2173,11],[2553,11],[2709,11]]},"contrast.html":{"position":[[1188,10]]}}}],["paramet",{"_index":31,"title":{},"contents":{"adjust.html":{"position":[[362,10],[1290,10],[2160,10],[3751,10]]},"cie-formats.html":{"position":[[706,10],[1530,10]]},"cie-inspect.html":{"position":[[602,10],[1062,10],[1459,10],[1862,10],[2419,10]]},"contrast.html":{"position":[[273,10]]}}}],["particular",{"_index":546,"title":{},"contents":{"LICENSE.html":{"position":[[1789,10]]}}}],["pass",{"_index":313,"title":{},"contents":{"contrast.html":{"position":[[612,6]]}}}],["path",{"_index":420,"title":{},"contents":{"index.html":{"position":[[868,6]]}}}],["percentag",{"_index":38,"title":{},"contents":{"adjust.html":{"position":[[453,12],[485,10],[2047,11],[2251,12],[2289,10],[2387,12],[2422,10],[2517,12],[2550,10],[2627,12],[2661,10],[2717,12],[2751,10],[3601,10]]},"cie-formats.html":{"position":[[823,10],[994,10],[1630,10],[1755,10]]}}}],["perceptu",{"_index":187,"title":{},"contents":{"cie-formats.html":{"position":[[40,12]]}}}],["permiss",{"_index":468,"title":{},"contents":{"LICENSE.html":{"position":[[23,10],[492,10]]}}}],["permit",{"_index":489,"title":{},"contents":{"LICENSE.html":{"position":[[360,6],[1609,9]]}}}],["person",{"_index":473,"title":{},"contents":{"LICENSE.html":{"position":[[76,6],[367,7]]}}}],["physic",{"_index":506,"title":{},"contents":{"LICENSE.html":{"position":[[727,9]]}}}],["picker",{"_index":400,"title":{},"contents":{"index.html":{"position":[[318,6]]}}}],["place",{"_index":332,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[95,5],[172,5]]}}}],["pleas",{"_index":384,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[905,6]]}}}],["portion",{"_index":497,"title":{},"contents":{"LICENSE.html":{"position":[[557,8],[1170,7],[1365,7],[1516,7]]}}}],["posit",{"_index":29,"title":{},"contents":{"adjust.html":{"position":[[344,10],[594,8],[1272,10],[2142,10]]},"cie-formats.html":{"position":[[856,8]]}}}],["possibl",{"_index":340,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[189,8]]}}}],["pr",{"_index":343,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[227,3]]}}}],["pre",{"_index":184,"title":{},"contents":{"CHANGELOG.html":{"position":[[899,3]]},"cie-formats.html":{"position":[[304,3]]},"index.html":{"position":[[576,3]]}}}],["preview",{"_index":115,"title":{},"contents":{"adjust.html":{"position":[[4546,8]]},"cie-formats.html":{"position":[[1357,8],[2065,8]]},"cie-inspect.html":{"position":[[208,8]]},"contrast.html":{"position":[[1179,8]]}}}],["primari",{"_index":2,"title":{},"contents":{"adjust.html":{"position":[[20,7]]},"CONTRIBUTING.html":{"position":[[571,7]]}}}],["privat",{"_index":81,"title":{},"contents":{"adjust.html":{"position":[[3111,9]]},"contrast.html":{"position":[[1163,9]]}}}],["process",{"_index":356,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[441,7]]},"index.html":{"position":[[580,10]]}}}],["processor",{"_index":201,"title":{},"contents":{"cie-formats.html":{"position":[[308,10]]}}}],["project",{"_index":390,"title":{},"contents":{"index.html":{"position":[[5,7]]}}}],["proper",{"_index":297,"title":{},"contents":{"contrast.html":{"position":[[15,6]]}}}],["propos",{"_index":86,"title":{},"contents":{"adjust.html":{"position":[[3205,8],[3338,9]]},"index.html":{"position":[[1138,8]]}}}],["provid",{"_index":82,"title":{},"contents":{"adjust.html":{"position":[[3146,7]]},"cie-formats.html":{"position":[[30,7]]},"contrast.html":{"position":[[437,7],[529,7]]},"index.html":{"position":[[197,8]]},"LICENSE.html":{"position":[[980,7],[1643,8]]}}}],["provis",{"_index":523,"title":{},"contents":{"LICENSE.html":{"position":[[1181,9],[1376,9],[1528,9]]}}}],["publish",{"_index":484,"title":{},"contents":{"LICENSE.html":{"position":[[284,8]]}}}],["pull",{"_index":328,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[41,4],[231,4]]}}}],["purpos",{"_index":547,"title":{},"contents":{"LICENSE.html":{"position":[[1800,7]]}}}],["question",{"_index":337,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[149,9]]}}}],["rad",{"_index":163,"title":{},"contents":{"CHANGELOG.html":{"position":[[196,4]]}}}],["rang",{"_index":102,"title":{},"contents":{"adjust.html":{"position":[[3657,5]]},"CHANGELOG.html":{"position":[[609,5]]}}}],["ratio",{"_index":311,"title":{},"contents":{"contrast.html":{"position":[[548,5],[728,5]]}}}],["re",{"_index":377,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[802,2]]}}}],["rebeccapurpl",{"_index":116,"title":{},"contents":{"adjust.html":{"position":[[4555,13]]},"cie-formats.html":{"position":[[1075,13],[1218,14],[1799,13],[1942,14]]},"cie-inspect.html":{"position":[[274,13],[793,14],[965,14],[1225,14],[1364,14],[1622,14],[1762,14],[2040,14],[2200,14],[2588,14],[2739,14]]},"contrast.html":{"position":[[888,14],[983,14],[1079,14]]},"index.html":{"position":[[1314,14],[1403,14]]}}}],["recommend",{"_index":194,"title":{},"contents":{"cie-formats.html":{"position":[[196,11]]},"index.html":{"position":[[550,11]]}}}],["reduct",{"_index":208,"title":{},"contents":{"cie-formats.html":{"position":[[510,9]]}}}],["rel",{"_index":0,"title":{"adjust.html":{"position":[[0,8]]}},"contents":{"adjust.html":{"position":[[0,8],[3218,8],[3635,8],[4222,8]]},"CHANGELOG.html":{"position":[[443,8],[759,8]]},"cie-formats.html":{"position":[[533,8]]},"index.html":{"position":[[1601,8],[1617,8],[1865,8],[1936,8],[2089,8]]}}}],["relat",{"_index":14,"title":{},"contents":{"adjust.html":{"position":[[152,7],[4478,7]]},"cie-formats.html":{"position":[[617,7],[1267,7],[1991,7]]},"contrast.html":{"position":[[84,7],[1096,7]]}}}],["releas",{"_index":185,"title":{},"contents":{"CHANGELOG.html":{"position":[[903,8]]}}}],["remaind",{"_index":530,"title":{},"contents":{"LICENSE.html":{"position":[[1311,9]]}}}],["remov",{"_index":152,"title":{},"contents":{"CHANGELOG.html":{"position":[[46,6],[861,7]]}}}],["replac",{"_index":98,"title":{},"contents":{"adjust.html":{"position":[[3487,7]]},"CHANGELOG.html":{"position":[[484,7]]}}}],["repo",{"_index":358,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[459,5]]}}}],["repres",{"_index":95,"title":{},"contents":{"adjust.html":{"position":[[3409,10]]}}}],["request",{"_index":329,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[46,8],[104,7],[236,8]]}}}],["requir",{"_index":80,"title":{},"contents":{"adjust.html":{"position":[[3084,8],[4515,8]]},"cie-formats.html":{"position":[[2034,8]]},"contrast.html":{"position":[[1136,8]]},"index.html":{"position":[[471,8]]},"LICENSE.html":{"position":[[1052,7]]}}}],["restrict",{"_index":480,"title":{},"contents":{"LICENSE.html":{"position":[[202,12]]}}}],["result",{"_index":13,"title":{},"contents":{"adjust.html":{"position":[[143,8]]},"index.html":{"position":[[595,6],[703,6]]}}}],["return",{"_index":25,"title":{},"contents":{"adjust.html":{"position":[[265,6],[375,6],[1193,6],[1303,6],[2063,6],[2173,6],[3764,6],[4003,7]]},"CHANGELOG.html":{"position":[[234,7],[814,7]]},"cie-formats.html":{"position":[[719,6],[1015,7]]},"cie-inspect.html":{"position":[[114,6],[615,6],[664,7],[1075,6],[1124,7],[1472,6],[1521,7],[1875,6],[1924,7],[2432,6],[2481,7]]},"contrast.html":{"position":[[286,6],[368,7],[577,6],[648,7]]}}}],["rgb",{"_index":233,"title":{},"contents":{"cie-inspect.html":{"position":[[68,3]]}}}],["rgb(0",{"_index":129,"title":{},"contents":{"adjust.html":{"position":[[4695,6]]},"contrast.html":{"position":[[1261,6]]}}}],["rgb(102",{"_index":118,"title":{},"contents":{"adjust.html":{"position":[[4577,8]]},"cie-formats.html":{"position":[[1378,8],[2086,8]]},"cie-inspect.html":{"position":[[296,8]]},"contrast.html":{"position":[[1352,8]]}}}],["rgb(128",{"_index":323,"title":{},"contents":{"contrast.html":{"position":[[1305,8]]}}}],["rgb(191",{"_index":141,"title":{},"contents":{"adjust.html":{"position":[[4828,8]]}}}],["rgb(195",{"_index":134,"title":{},"contents":{"adjust.html":{"position":[[4759,8]]}}}],["rgb(255",{"_index":239,"title":{},"contents":{"cie-inspect.html":{"position":[[236,8],[348,8],[401,8]]},"contrast.html":{"position":[[1207,8]]}}}],["rgb(87",{"_index":123,"title":{},"contents":{"adjust.html":{"position":[[4636,7]]}}}],["rgba(102",{"_index":224,"title":{},"contents":{"cie-formats.html":{"position":[[1240,9],[1429,9],[1964,9],[2137,9]]}}}],["right",{"_index":353,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[356,5]]},"LICENSE.html":{"position":[[248,6],[875,6],[933,9]]}}}],["rough",{"_index":439,"title":{},"contents":{"index.html":{"position":[[1900,5]]}}}],["roughli",{"_index":176,"title":{},"contents":{"CHANGELOG.html":{"position":[[723,7]]}}}],["round",{"_index":200,"title":{},"contents":{"cie-formats.html":{"position":[[289,9]]},"index.html":{"position":[[502,9]]}}}],["run",{"_index":373,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[729,3],[883,3]]}}}],["same",{"_index":192,"title":{},"contents":{"cie-formats.html":{"position":[[186,4]]},"cie-inspect.html":{"position":[[490,4],[2319,4]]},"index.html":{"position":[[350,4],[529,4]]}}}],["sass",{"_index":34,"title":{},"contents":{"adjust.html":{"position":[[410,4],[1338,4],[2208,4],[3247,4],[3799,4]]},"CHANGELOG.html":{"position":[[114,4],[252,4],[296,4],[638,4],[832,4]]},"cie-formats.html":{"position":[[152,4],[411,4],[677,4],[1501,4]]},"cie-inspect.html":{"position":[[29,4],[560,4],[642,4],[1102,4],[1499,4],[1902,4],[2383,4],[2459,4]]},"CONTRIBUTING.html":{"position":[[529,5],[598,5],[792,4],[923,4]]},"index.html":{"position":[[57,5],[265,4],[858,4],[950,4],[971,5],[1473,4],[1626,4],[2511,5]]}}}],["sassdoc",{"_index":364,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[541,8]]}}}],["save",{"_index":418,"title":{},"contents":{"index.html":{"position":[[832,4]]}}}],["scale",{"_index":71,"title":{},"contents":{"adjust.html":{"position":[[1983,7],[1999,5],[2264,5],[2400,5],[2640,5],[2730,5],[2812,5],[2857,6],[3617,5],[4231,6],[4263,6],[4441,6],[4731,5]]},"CHANGELOG.html":{"position":[[551,7],[562,5]]},"index.html":{"position":[[1794,5],[2098,6]]}}}],["scss",{"_index":59,"title":{},"contents":{"adjust.html":{"position":[[937,4],[1809,4],[2902,4],[4061,4]]},"cie-formats.html":{"position":[[1060,4],[1784,4]]},"cie-inspect.html":{"position":[[734,4],[1182,4],[1579,4],[1987,4],[2541,4]]},"contrast.html":{"position":[[742,4]]}}}],["see",{"_index":397,"title":{},"contents":{"index.html":{"position":[[278,3]]}}}],["select",{"_index":171,"title":{},"contents":{"CHANGELOG.html":{"position":[[371,7]]},"contrast.html":{"position":[[225,6]]}}}],["sell",{"_index":488,"title":{},"contents":{"LICENSE.html":{"position":[[324,4]]}}}],["separ",{"_index":215,"title":{},"contents":{"cie-formats.html":{"position":[[747,9],[1562,9]]}}}],["servic",{"_index":517,"title":{},"contents":{"LICENSE.html":{"position":[[943,9],[990,7],[1088,7]]}}}],["set",{"_index":20,"title":{},"contents":{"adjust.html":{"position":[[200,5],[206,3],[466,3],[578,3],[687,3],[779,3],[838,3],[893,3],[942,4],[1056,4],[1814,4],[1930,4],[2907,4],[3035,4],[4077,3],[4094,4],[4410,4],[4614,3]]},"CHANGELOG.html":{"position":[[70,8],[475,5]]},"index.html":{"position":[[1688,3],[1971,3]]}}}],["sever",{"_index":394,"title":{},"contents":{"index.html":{"position":[[106,7]]}}}],["shall",{"_index":495,"title":{},"contents":{"LICENSE.html":{"position":[[510,5],[1022,6],[1207,5],[1476,5],[1556,5],[1841,5]]}}}],["shorthand",{"_index":44,"title":{},"contents":{"adjust.html":{"position":[[544,10],[657,10],[750,10],[996,10],[1080,10],[1452,10],[1545,10],[1643,10],[1866,10],[1951,10],[2362,10],[2495,10],[2607,10],[2971,10],[3062,10],[3311,9]]},"index.html":{"position":[[1880,10]]}}}],["similar",{"_index":230,"title":{},"contents":{"cie-inspect.html":{"position":[[18,7]]}}}],["singl",{"_index":92,"title":{},"contents":{"adjust.html":{"position":[[3370,6],[3468,6]]}}}],["site",{"_index":376,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[782,4]]}}}],["slight",{"_index":410,"title":{},"contents":{"index.html":{"position":[[605,6],[713,6]]}}}],["slightli",{"_index":206,"title":{},"contents":{"cie-formats.html":{"position":[[458,8]]}}}],["softwar",{"_index":476,"title":{},"contents":{"LICENSE.html":{"position":[[108,8],[157,12],[185,8],[343,9],[387,8],[573,9],[596,8],[960,8],[1631,8],[2033,8],[2078,9],[2264,9]]}}}],["sort",{"_index":196,"title":{},"contents":{"cie-formats.html":{"position":[[227,4]]}}}],["sourc",{"_index":391,"title":{},"contents":{"index.html":{"position":[[18,6]]},"LICENSE.html":{"position":[[2127,6],[2257,6]]}}}],["space",{"_index":189,"title":{},"contents":{"cie-formats.html":{"position":[[67,6],[241,5],[741,5],[1556,5]]},"index.html":{"position":[[41,6],[464,6]]}}}],["specif",{"_index":23,"title":{},"contents":{"adjust.html":{"position":[[244,8],[4490,13]]},"cie-formats.html":{"position":[[629,13],[1285,13],[2009,13]]},"contrast.html":{"position":[[96,13]]}}}],["specifici",{"_index":190,"title":{},"contents":{"cie-formats.html":{"position":[[111,15]]}}}],["srgb",{"_index":167,"title":{},"contents":{"CHANGELOG.html":{"position":[[245,6],[825,6]]},"cie-formats.html":{"position":[[157,5],[416,6],[605,4],[1041,4]]},"index.html":{"position":[[943,6]]}}}],["step",{"_index":412,"title":{},"contents":{"index.html":{"position":[[631,5]]}}}],["subject",{"_index":491,"title":{},"contents":{"LICENSE.html":{"position":[[419,7]]}}}],["sublicens",{"_index":486,"title":{},"contents":{"LICENSE.html":{"position":[[305,11]]}}}],["submit",{"_index":342,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[218,6]]}}}],["substanti",{"_index":496,"title":{},"contents":{"LICENSE.html":{"position":[[545,11]]}}}],["subtract",{"_index":104,"title":{},"contents":{"adjust.html":{"position":[[3707,8]]},"CHANGELOG.html":{"position":[[527,8]]}}}],["such",{"_index":532,"title":{},"contents":{"LICENSE.html":{"position":[[1360,4]]}}}],["syntax",{"_index":84,"title":{},"contents":{"adjust.html":{"position":[[3164,6],[3233,7],[3277,6]]},"CHANGELOG.html":{"position":[[716,6],[768,6]]},"cie-formats.html":{"position":[[698,7],[1522,7]]},"index.html":{"position":[[158,7],[1951,7]]}}}],["system",{"_index":500,"title":{},"contents":{"LICENSE.html":{"position":[[635,7]]}}}],["tab",{"_index":407,"title":{},"contents":{"index.html":{"position":[[417,3]]}}}],["test",{"_index":368,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[626,5],[639,5],[719,4],[737,5]]}}}],["tests/doc",{"_index":372,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[702,11]]}}}],["that’",{"_index":183,"title":{},"contents":{"CHANGELOG.html":{"position":[[887,6]]}}}],["therebi",{"_index":535,"title":{},"contents":{"LICENSE.html":{"position":[[1498,8]]}}}],["thing",{"_index":181,"title":{},"contents":{"CHANGELOG.html":{"position":[[869,7]]},"CONTRIBUTING.html":{"position":[[299,6]]}}}],["those",{"_index":520,"title":{},"contents":{"LICENSE.html":{"position":[[1060,5],[1414,5]]}}}],["threaten",{"_index":505,"title":{},"contents":{"LICENSE.html":{"position":[[714,8]]}}}],["three",{"_index":382,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[891,5]]}}}],["threshold",{"_index":314,"title":{},"contents":{"contrast.html":{"position":[[638,9]]}}}],["to>/blend",{"_index":421,"title":{},"contents":{"index.html":{"position":[[875,11]]}}}],["todo",{"_index":442,"title":{},"contents":{"index.html":{"position":[[2226,4]]}}}],["tool",{"_index":232,"title":{},"contents":{"cie-inspect.html":{"position":[[43,5]]}}}],["tort",{"_index":559,"title":{},"contents":{"LICENSE.html":{"position":[[1967,4]]}}}],["toward",{"_index":74,"title":{},"contents":{"adjust.html":{"position":[[2316,7],[2449,7],[2688,7],[2778,7]]},"CHANGELOG.html":{"position":[[576,7]]}}}],["true",{"_index":363,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[535,5]]}}}],["turn",{"_index":162,"title":{},"contents":{"CHANGELOG.html":{"position":[[190,5]]}}}],["two",{"_index":307,"title":{},"contents":{"contrast.html":{"position":[[445,3]]}}}],["unenforc",{"_index":526,"title":{},"contents":{"LICENSE.html":{"position":[[1250,13],[1461,14]]}}}],["uneth",{"_index":569,"title":{},"contents":{"LICENSE.html":{"position":[[2235,9]]}}}],["uniform",{"_index":188,"title":{},"contents":{"cie-formats.html":{"position":[[53,7]]}}}],["unit",{"_index":77,"title":{},"contents":{"adjust.html":{"position":[[2888,5],[3545,5]]},"CHANGELOG.html":{"position":[[179,4]]},"LICENSE.html":{"position":[[829,6]]}}}],["unitless",{"_index":218,"title":{},"contents":{"cie-formats.html":{"position":[[965,8],[1726,8]]}}}],["univers",{"_index":513,"title":{},"contents":{"LICENSE.html":{"position":[[844,9]]}}}],["unreleas",{"_index":150,"title":{},"contents":{"CHANGELOG.html":{"position":[[25,10]]}}}],["up",{"_index":64,"title":{},"contents":{"adjust.html":{"position":[[1159,2],[2025,2]]}}}],["updat",{"_index":371,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[691,6]]}}}],["us",{"_index":42,"title":{},"contents":{"adjust.html":{"position":[[525,3],[638,3],[731,3],[1433,3],[1526,3],[1624,3],[2343,3],[2476,3],[2588,3],[2880,5]]},"CHANGELOG.html":{"position":[[708,5]]},"cie-formats.html":{"position":[[176,5],[499,3],[1310,4]]},"contrast.html":{"position":[[217,4]]},"CONTRIBUTING.html":{"position":[[474,3]]},"index.html":{"position":[[342,3],[521,3],[863,4],[1649,5],[2351,4]]},"LICENSE.html":{"position":[[258,4],[616,4],[972,4],[1047,4],[1080,3],[2049,3],[2245,3]]}}}],["usag",{"_index":414,"title":{},"contents":{"index.html":{"position":[[733,5]]}}}],["v0.1.1",{"_index":177,"title":{},"contents":{"CHANGELOG.html":{"position":[[775,6]]}}}],["v0.2.0",{"_index":149,"title":{},"contents":{"CHANGELOG.html":{"position":[[16,6]]}}}],["valid",{"_index":537,"title":{},"contents":{"LICENSE.html":{"position":[[1565,5]]}}}],["valu",{"_index":24,"title":{},"contents":{"adjust.html":{"position":[[253,7],[3445,5],[3515,5],[3745,5],[4334,5]]},"CHANGELOG.html":{"position":[[284,6],[502,5]]},"cie-formats.html":{"position":[[800,7],[1046,5],[1608,6]]},"cie-inspect.html":{"position":[[79,6],[141,7],[525,5],[2348,5]]},"contrast.html":{"position":[[567,6]]},"index.html":{"position":[[1463,6],[2187,5]]}}}],["variat",{"_index":411,"title":{},"contents":{"index.html":{"position":[[612,10]]}}}],["variou",{"_index":180,"title":{},"contents":{"CHANGELOG.html":{"position":[[843,7]]}}}],["verou",{"_index":402,"title":{},"contents":{"index.html":{"position":[[332,6]]}}}],["version",{"_index":443,"title":{},"contents":{"index.html":{"position":[[2243,7]]}}}],["view",{"_index":389,"title":{},"contents":{"index.html":{"position":[[0,4],[13,4]]}}}],["violat",{"_index":511,"title":{},"contents":{"LICENSE.html":{"position":[[812,9],[1112,8]]}}}],["warranti",{"_index":540,"title":{},"contents":{"LICENSE.html":{"position":[[1669,8],[1744,10]]}}}],["way",{"_index":110,"title":{},"contents":{"adjust.html":{"position":[[4249,3]]},"index.html":{"position":[[2116,3]]},"LICENSE.html":{"position":[[1103,3]]}}}],["welcom",{"_index":330,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[59,8]]}}}],["well",{"_index":509,"title":{},"contents":{"LICENSE.html":{"position":[[766,4]]}}}],["we’ll",{"_index":236,"title":{},"contents":{"cie-inspect.html":{"position":[[166,5]]}}}],["we’r",{"_index":447,"title":{},"contents":{"index.html":{"position":[[2330,5]]}}}],["we’v",{"_index":89,"title":{},"contents":{"adjust.html":{"position":[[3293,5]]}}}],["wheel",{"_index":75,"title":{},"contents":{"adjust.html":{"position":[[2572,5]]}}}],["whether",{"_index":556,"title":{},"contents":{"LICENSE.html":{"position":[[1933,7]]}}}],["white",{"_index":111,"title":{},"contents":{"adjust.html":{"position":[[4256,6]]},"contrast.html":{"position":[[361,6],[408,5],[771,5]]},"index.html":{"position":[[1215,5],[2123,6]]}}}],["will",{"_index":347,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[271,7]]}}}],["without",{"_index":479,"title":{},"contents":{"LICENSE.html":{"position":[[194,7],[225,7],[1661,7]]}}}],["wonder",{"_index":398,"title":{},"contents":{"index.html":{"position":[[286,9]]}}}],["work",{"_index":380,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[862,5]]},"index.html":{"position":[[252,7],[2336,7]]}}}],["written",{"_index":403,"title":{},"contents":{"index.html":{"position":[[383,7]]}}}],["yarn",{"_index":359,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[478,4],[562,4],[714,4],[743,4],[787,4],[868,4]]}}}],["yellow",{"_index":244,"title":{},"contents":{"cie-inspect.html":{"position":[[333,6],[840,7],[996,7],[1264,7],[1394,7],[1661,7],[1793,7],[2084,7],[2230,7],[2629,7],[2773,7]]}}}],["you’r",{"_index":346,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[264,6]]}}}]],"pipeline":["stemmer"]},"store":{"adjust.html":{"filename":"adjust.html","title":"Relative Colors","contents":"Relative Colors The primary advantage of LCH color is the ability to generate one color from another by adjust channels, and expect consistent results. Related CSS Colors Level 5 [external] @function set() Set individual Lab or LCH channels to specific values, and return the adjusted color. All arguments must be given by keyword, rather than positional order. Parameters & Return $color: (color) The initial Sass color being adjusted $lightness: null (percentage) Set lightness to a percentage between 0 and 100% (Can also use the $l keyword shorthand) $chroma: null (number) Set chroma to a positive number (generally 0-100) (Can also use the $c keyword shorthand) $hue: null (angle) Set hue to an angle (0deg-360deg) (Can also use the $h keyword shorthand) $a: null (number) Set the Lab a channel to any number ±160 $b: null (number) Set the Lab b channel to any number ±160 @error Cannot set both Lab & LCH channels at once Example scss .set { chroma: blend.set(rebeccapurple, $chroma: 20); shorthand: blend.set(rebeccapurple, $c: 20); } css compiled .set { chroma: #574665; shorthand: #574665; } @function adjust() Adjust individual Lab or LCH channels up or down by a given amount, and return the adjusted color. All arguments must be given by keyword, rather than positional order. Parameters & Return $color: (color) The initial Sass color being adjusted $lightness: null (number) Adjust lightness by given amount (Can also use the $l keyword shorthand) $chroma: null (number) Adjust chroma by given amount (Can also use the $c keyword shorthand) $hue: null (number) Adjust hue by given number of degrees (Can also use the $h keyword shorthand) $a: null (number) Adjust Lab a by given amount $b: null (number) Adjust Lab b by given amount @error Cannot adjust both Lab & LCH channels at once Example scss .set { hue: blend.adjust(rebeccapurple, $hue: -60); shorthand: blend.adjust(rebeccapurple, $h: -60); } css compiled .set { hue: #005278; shorthand: #005278; } @function scale() Fluidly scale Lab or LCH channels up or down by a given percentage, and return the adjusted color. All arguments must be given by keyword, rather than positional order. Parameters & Return $color: (color) The initial Sass color being adjusted $lightness: null (percentage) Scale lightness by given percentage of the distance towards 0 or 100 (Can also use the $l keyword shorthand) $chroma: null (percentage) Scale chroma by given percentage of the distance towards 0 or 100 (Can also use the $c keyword shorthand) $hue: null (percentage) Adjust hue by given percentage of the hue wheel (Can also use the $h keyword shorthand) $a: null (percentage) Scale Lab a by given percentage of the distance towards 160 or -160 $b: null (percentage) Scale Lab b by given percentage of the distance towards 160 or -160 @error Cannot scale both Lab & LCH channels at once @error Scales must be defined using % units Example scss .set { lightness: blend.adjust(rebeccapurple, $lightness: 50%); shorthand: blend.adjust(rebeccapurple, $l: 50%); } css compiled .set { lightness: #e3c0ff; shorthand: #e3c0ff; } Requires @function error() [private] @function from() We also provide a compact syntax for LCH adjustments, based on the proposed CSS relative color syntax. Since Sass is not able to mimic the syntax exactly, we’ve developed a shorthand based on the CSS proposal. For each channel: The single-letter channel name (l | c | h) represents no change to the current value of the channel A single number will replace the current channel value A number with l | c | h units will multiply the channel l | c | h followed by a percentage will scale the channel relative to available range l | c | h followed by an amount will add or subtract that amount from the current value Parameters & Return $color: (color) The initial Sass color being adjusted $l: l (l | number | l number) Adjustments to the l channel: $c: c (c | number | c number) Adjustments to the c channel $h: h (h | number | h number) Adjustments to the h channel @return (color) The final color after adjustments Example scss .from { // set chroma to 20 set: blend.from(rebeccapurple, l, 20, h); // linear adjustments to a channel adjust: blend.from(rebeccapurple, l, c, h -60); // relative scale, e.g. \"half-way to white\" scale: blend.from(rebeccapurple, l 50%, c, h); // multiply the channel value multiply: blend.from(rebeccapurple, 2l, c, h); } css compiled .from { set: #574665; adjust: #005278; scale: #c388f8; multiply: #bf85f4; } Related CSS Specification [external] Requires @function lch() Color Previews rebeccapurple #663399 rgb(102, 51, 153) hsl(270, 50%, 40%) set chroma 20 #574665 rgb(87, 70, 101) hsl(273, 18%, 34%) adjust hue -60 #005278 rgb(0, 82, 120) hsl(199, 100%, 24%) scale lightness 50% #c388f8 rgb(195, 136, 248) hsl(272, 89%, 75%) multiply lightness * 2 #bf85f4 rgb(191, 133, 244) hsl(271, 83%, 74%)"},"CHANGELOG.html":{"filename":"CHANGELOG.html","title":"Changelog","contents":"Blend Changelog v0.2.0 - UNRELEASED BREAKING: Remove over-complicated settings & output options for now. Focus on Sass <-> CIE functions. NEW: lch() hue channel accepts any angle unit (e.g. turn, rad, grad, or deg) NEW: lab($lab, $a) returns an (sRGB) Sass color NEW: Inspect LCH/Lab values of a Sass color with lightness() a() and b() chroma() and hue() NEW: contrast() selects the best contrast from a list NEW: Generate new colors based on relative LCH & Lab adjustments: set() to replace a channel value adjust() to add or subtract from a channel scale() to scale fluidly towards one “end” of the channel range NEW: from() converts a Sass color to LCH in order to adjust CIE lightness, chroma, and hue – using a syntax roughly based on CSS Colors Level 5 relative syntax v0.1.1 - 2020.05.06 NEW: lch($lch, $a) returns an (sRGB) Sass color Various other now-removed things… ¯\\_(ツ)_/¯ that’s what pre-releases are for"},"cie-formats.html":{"filename":"cie-formats.html","title":"Lab & LCH Formats","contents":"Lab & LCH Formats Lab and LCH provide a perceptually uniform color space. These functions are based on the CSS specificiation, but eagerly converted to Sass sRGB. While we are using the same math recommended for browsers, this sort of color-space conversion involves gamut-adjustments and rounding. In a pre-processor, that math is compiled once, and the original data is not maintained. A color converted into Sass (sRGB) format and then back to CIE may be slightly different from the original. We use chroma-reduction to achieve a relative-colormetric closest match for CIE colors that fall outside the sRGB gamut. Related CSS specification [external] @function lch() Define Sass colors in lch() syntax. Parameters & Return $lch: (list) A space-separated list of lightness, chroma, and hue channel values. lightness is a percentage (0%-100%) chroma is a positive number (generally 0-100) hue is an angle (0deg-360deg) $a: 100% (number) Alpha opacity, as either a unitless fraction (0-1) or a percentage (0%-100%) @return (color) Converted sRGB value Example scss .lch { // rebeccapurple lch: blend.lch(32.39% 61.25 308.86deg); // 60% opacity lch-a: blend.lch(32.39% 61.25 308.86deg, 60%); } css compiled .lch { lch: rebeccapurple; lch-a: rgba(102, 51, 153, 0.6); } Related CSS lch() specification [external] Used By @function from() @function lab() Color Previews lch #663399 rgb(102, 51, 153) hsl(270, 50%, 40%) lch-a #663399 rgba(102, 51, 153, 0.6) hsla(270, 50%, 40%, 0.6) @function lab() Define Sass colors in lab() syntax. Parameters $lab: (list) A space-separated list of lightness, a, and b channel values lightness is a percentage (0%-100%) a & b are both numbers (±160) $a: 100% (number) Alpha opacity, as either a unitless fraction (0-1) or a percentage (0%-100%) Example scss .lab { // rebeccapurple lab: blend.lab(32.39% 38.43 -47.69); // 60% alpha opacity lab-a: blend.lab(32.39% 38.43 -47.69, 0.6); } css compiled .lab { lab: rebeccapurple; lab-a: rgba(102, 51, 153, 0.6); } Related CSS lab() specification [external] Requires @function lch() Color Previews lab #663399 rgb(102, 51, 153) hsl(270, 50%, 40%) lab-a #663399 rgba(102, 51, 153, 0.6) hsla(270, 50%, 40%, 0.6)"},"cie-inspect.html":{"filename":"cie-inspect.html","title":"Inspecting Colors","contents":"Inspecting Colors Similar to Sass built-in tools for inspecting the rgb or hsl values of a color, these functions return LCH and Lab channel values. For these demos, we’ll inspect the following colors: Color Previews papayawhip #ffefd5 rgb(255, 239, 213) hsl(37, 100%, 92%) rebeccapurple #663399 rgb(102, 51, 153) hsl(270, 50%, 40%) yellow #ffff00 rgb(255, 255, 0) hsl(60, 100%, 50%) deeppink #ff1493 rgb(255, 20, 147) hsl(328, 100%, 54%) @function lightness() Lab/LCH lightness is not the same as HSL/HWB lightness, so this value will not match the output of Sass built-in color.lightness() function. Parameters & Return $color: (color) The Sass color to inspect @return (number) The Lab/LCH “lightness” channel of the color Example scss .lightness { papayawhip: blend.lightness(papayawhip); rebeccapurple: blend.lightness(rebeccapurple); yellow: blend.lightness(yellow); deeppink: blend.lightness(deeppink); } css compiled .lightness { papayawhip: 95.228994537%; rebeccapurple: 32.3927863513%; yellow: 97.6071273304%; deeppink: 56.6052673708%; } @function a() Parameters & Return $color: (color) The Sass color to inspect @return (number) The Lab “a” channel of the color Example scss .a { papayawhip: blend.a(papayawhip); rebeccapurple: blend.a(rebeccapurple); yellow: blend.a(yellow); deeppink: blend.a(deeppink); } css compiled .a { papayawhip: 2.5389948734; rebeccapurple: 38.4284034785; yellow: -15.7528937383; deeppink: 83.4583942761; } @function b() Parameters & Return $color: (color) The Sass color to inspect @return (number) The Lab “b” channel of the color Example scss .b { papayawhip: blend.b(papayawhip); rebeccapurple: blend.b(rebeccapurple); yellow: blend.b(yellow); deeppink: blend.b(deeppink); } css compiled .b { papayawhip: 14.6759120217; rebeccapurple: -47.6901973328; yellow: 93.3884904256; deeppink: -4.1193014063; } @function chroma() Parameters & Return $color: (color) The Sass color to inspect @return (number) The LCH “chroma” channel of the color Example scss .chroma { papayawhip: blend.chroma(papayawhip); rebeccapurple: blend.chroma(rebeccapurple); yellow: blend.chroma(yellow); deeppink: blend.chroma(deeppink); } css compiled .chroma { papayawhip: 14.8939211974; rebeccapurple: 61.2462008254; yellow: 94.7077811222; deeppink: 83.5599917378; } @function hue() Lab/LCH hue is not the same as HSL/HWB hue, so this value will not match the output of Sass built-in color.hue() function. Parameters & Return $color: (color) The Sass color to inspect @return (number) The LCH “hue” channel of the color Example scss .hue { papayawhip: blend.hue(papayawhip); rebeccapurple: blend.hue(rebeccapurple); yellow: blend.hue(yellow); deeppink: blend.hue(deeppink); } css compiled .hue { papayawhip: 80.1847432252deg; rebeccapurple: 308.8616067109deg; yellow: 99.5745966976deg; deeppink: 357.1743141408deg; }"},"contrast.html":{"filename":"contrast.html","title":"Color Contrast","contents":"Color Contrast Proper contrast is important for design legibillity & accessibility. Related CSS specification [external] @function contrast() CSS Color Module, level 5, defines a color-contrast() function that can be used to select the best contrast from a list of colors. Parameters & Return $color: (color) Base color to contrast against $options...: (black, white) Returns the better contrast of black or white by default. Optionally provide two or more colors, to compare for highest contrast with the base color. Optionally provide a contrast ratio as the final value, to return the first color option that passes the given contrast threshold @return (color) The option with the highest contrast, orr first to meet a given ratio Example scss .contrast { // black or white for best contrast default: blend.contrast(papayawhip); // highest contrast highest: blend.contrast(papayawhip, rebeccapurple, maroon); // first option with contrast >= 4.5 first: blend.contrast(papayawhip, rebeccapurple, maroon, 4.5); } css compiled .contrast { default: black; highest: maroon; first: rebeccapurple; } Related CSS color-contrast() [external] Requires @function error() [private] Color Previews papayawhip #ffefd5 rgb(255, 239, 213) hsl(37, 100%, 92%) default #000000 rgb(0, 0, 0) hsl(0, 0%, 0%) highest #800000 rgb(128, 0, 0) hsl(0, 100%, 25%) first #663399 rgb(102, 51, 153) hsl(270, 50%, 40%)"},"CONTRIBUTING.html":{"filename":"CONTRIBUTING.html","title":"Contributing","contents":"Contributing to Blend Ideas, issues, and pull-requests are welcome! Github Issues are the best place to request a feature, file a bug, or just ask a question. Also a great place to discuss possible features before you submit a PR. Pull Requests are a big help, if you’re willing to jump in and make things happen. For a bugfix, or documentation, just jump right in. For major changes or new features, it’s best to discuss in an issue first. Process Clone the repo, and then use yarn to install development dependencies like Dart Sass, True, SassDoc, and Herman: yarn The primary codebase is in the sass/ folder, with matching tests in the test/ directory. Any major code changes should also update the tests/docs. yarn test will run the tests yarn docs will build the documentation site yarn sass will re-compile the code in demo/ (mainly for experiments as you work) yarn commit to run all three Conduct Please follow the Sass Community Guidelines and Oddbird Code of Conduct."},"index.html":{"filename":"index.html","title":"@mirisuzanne/blend Documentation","contents":"View Project View Source Blend CSS color spaces for Dart Sass… CSS Color Module Level 4 & Level 5 include several new CSS color formats, new color-adjustment syntax, and a contrast function. Blend provides early access to many of these features, while working with Sass colors. See the wonderful interactive LCH Color Picker by Lea Verou. We use the same conversion math, originally written in JS by Chris Lilley and Tab Atkins. Note that conversion between color-spaces requires gamut-adjustments and rounding. While we use the same conversion math recommended for browsers, pre-processing can result in slight variations in each step. Converting a color from one format to another and back again, may result in slight differences. Usage Download the files from GitHub, or install the npm package: npm install @mirisuzanne/blend --save-dev Import with Dart Sass @use '/blend'; Lab & LCH Formats (CIE) LCH & Lab color-conversion into (sRGB) sass colors: $cie-to-sass: ( blend.lch(30% 50 300), blend.lab(60% -60 60), blend.lch(60% 75 120, 50%), // as % blend.lab(60% -60 60, 0.5), // or as fraction ); Color Contrast Based on the proposed Level 5 color-contrast() function: $contrast: ( // default black or white for best contrast blend.contrast($color), // highest contrast blend.contrast($color, maroon, rebeccapurple, cyan), // first color with contrast >= 4.5 blend.contrast($color, maroon, rebeccapurple, 4.5), ); Inspecting Colors Inspect LCH & Lab values of Sass colors: $inspect: ( blend.lightness($color), blend.a($color), blend.b($color), blend.chroma($color), blend.hue($color), ); Relative Colors Relative Sass color adjustments using LCH & Lab channels $adjust: ( // set chroma to 10 blend.set($color, $chroma: 10), // adjust hue by -10 blend.adjust($color, $hue: -10), // scale lightness 10% lighter blend.scale($color, $lightness: 10%), ); A relative-color shorthand, based on rough interpretation of the Level 5 relative color syntax: $from: ( // set chroma to 20 blend.from($color, l, 20, h), // linear adjustments to a channel blend.from($color, l, c, h -60), // relative scale, e.g. \"half-way to white\" blend.from($color, l 50%, c, h), // multiply the channel value blend.from($color, 2l, c, h), ); Todo The initial version is mostly focused on CIE colors, but Level 4 includes an array of new formats. We’re working on it… @use 'blend'; $new-formats: ( blend.hwb(120deg 15% 15%), blend.color(display-p3 0.728 0.2824 0.4581), blend.color(rec-2020 0.6431 0.2955 0.4324), ..., ); $from-sass: ( blend.get($color, 'lch'), blend.get($color, 'lab'), blend.get($color, 'display-p3'), ..., ); $output: ( blend.string($color, 'lch'), blend.string($color, 'lab'), blend.string($color, 'display-p3'), ..., );"},"LICENSE.html":{"filename":"LICENSE.html","title":"Hipocratic MIT License","contents":"Copyright 2019 OddBird Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. No Harm: The software may not be used by anyone for systems or activities that actively and knowingly endanger, harm, or otherwise threaten the physical, mental, economic, or general well-being of other individuals or groups, in violation of the United Nations Universal Declaration of Human Rights (https://www.un.org/en/universal-declaration-human-rights/). Services: If the Software is used to provide a service to others, the licensee shall, as a condition of use, require those others not to use the service in any way that violates the No Harm clause above. Enforceability: If any portion or provision of this License shall to any extent be declared illegal or unenforceable by a court of competent jurisdiction, then the remainder of this License, or the application of such portion or provision in circumstances other than those as to which it is so declared illegal or unenforceable, shall not be affected thereby, and each portion and provision of this Agreement shall be valid and enforceable to the fullest extent permitted by law. THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This Hippocratic License is an Ethical Source license (https://ethicalsource.dev) derived from the MIT License, amended to limit the impact of the unethical use of open source software."}}}
\ No newline at end of file
+{"idx":{"version":"2.3.8","fields":["title","contents"],"fieldVectors":[["title/adjust.html",[0,0.505,1,0.053]],["contents/adjust.html",[0,0.678,1,0.102,2,0.831,3,1.163,4,0.566,5,1.163,6,0.695,7,0.613,8,0.831,9,1.397,10,0.968,11,1.163,12,1.163,13,0.831,14,0.947,15,0.551,16,0.45,17,0.45,18,0.947,19,0.512,20,1.834,21,1.284,22,0.597,23,0.947,24,0.484,25,0.834,26,2.194,27,2.431,28,3.287,29,1.764,30,1.569,31,0.955,32,0.38,33,1.764,34,0.484,35,1.764,36,0.89,37,3.4,38,2.407,39,0.831,40,0.955,41,1.032,42,0.324,43,2.452,44,2.452,45,0.89,46,1.856,47,2.452,48,0.89,49,0.947,50,0.831,51,0.831,52,2.471,53,2.015,54,1.091,55,1.907,56,1.569,57,1.569,58,0.955,59,0.955,60,1.796,61,1.406,62,0.678,63,2.468,64,1.796,65,1.796,66,2.939,67,1.163,68,2.468,69,1.301,70,2.468,71,1.755,72,0.831,73,2.468,74,1.764,75,1.163,76,0.613,77,0.947,78,0.733,79,1.796,80,0.494,81,0.831,82,0.32,83,1.163,84,0.849,85,0.494,86,1.284,87,1.163,88,1.163,89,1.163,90,0.831,91,0.613,92,1.796,93,1.163,94,1.163,95,1.163,96,0.831,97,2.194,98,0.831,99,1.907,100,0.695,101,1.163,102,0.831,103,0.831,104,0.831,105,0.831,106,2.468,107,0.831,108,0.613,109,0.831,110,0.613,111,0.613,112,0.831,113,1.796,114,1.796,115,0.45,116,0.32,117,0.45,118,0.45,119,0.45,120,0.45,121,0.45,122,0.45,123,1.163,124,1.163,125,1.163,126,1.163,127,1.163,128,1.163,129,0.831,130,1.163,131,0.831,132,1.163,133,1.163,134,1.163,135,1.163,136,1.163,137,1.163,138,1.163,139,0.831,140,1.163,141,1.163,142,1.163,143,1.163,144,1.163,145,1.163,146,1.163]],["title/CHANGELOG.html",[147,1.635]],["contents/CHANGELOG.html",[0,0.796,1,0.101,4,0.577,6,0.886,7,1.207,9,1.229,10,0.918,15,0.416,16,0.886,17,0.886,19,0.416,20,1.527,22,0.416,24,0.526,25,0.796,30,1.637,32,0.323,34,0.626,36,0.796,42,0.233,45,0.796,48,0.873,49,1.207,54,0.886,71,1.527,72,1.637,74,1.637,77,1.207,84,1.121,85,0.796,98,1.637,102,1.637,103,1.637,104,1.637,108,1.207,147,1.637,148,1.207,149,2.29,150,2.29,151,2.897,152,2.29,153,1.637,154,1.527,155,1.207,156,1.637,157,2.897,158,2.29,159,2.29,160,1.207,161,1.637,162,2.897,163,2.29,164,2.29,165,1.207,166,1.527,167,1.906,168,2.29,169,2.29,170,2.29,171,2.29,172,2.29,173,2.29,174,1.527,175,0.886,176,2.29,177,1.121,178,1.637,179,0.886,180,0.886,181,2.29,182,1.207,183,2.29,184,2.29,185,2.29,186,2.29,187,2.29,188,1.637,189,2.29,190,2.29,191,1.207,192,2.29]],["title/cie-formats.html",[4,0.239,22,0.239,32,0.134,193,0.694]],["contents/cie-formats.html",[0,0.485,1,0.099,4,0.661,6,0.682,9,0.682,10,0.67,14,1.472,15,0.594,18,1.472,19,0.594,22,0.661,23,1.472,24,0.507,25,0.67,29,1.261,31,0.943,32,0.371,34,0.547,36,0.828,38,2.153,40,1.296,41,1.296,42,0.284,45,0.768,46,1.588,48,0.67,49,0.93,50,1.261,51,1.261,53,1.261,54,0.943,56,1.261,57,1.261,58,0.943,59,0.943,62,0.768,69,1.472,76,1.285,78,0.828,80,0.485,82,0.485,84,0.943,85,0.485,115,0.943,116,0.828,117,1.165,118,0.943,119,1.265,120,1.265,121,0.943,122,1.165,165,0.93,166,1.285,174,1.588,180,1.165,182,1.472,191,0.93,193,1.285,194,1.764,195,1.764,196,2.153,197,1.764,198,1.764,199,0.93,200,1.743,201,1.261,202,1.261,203,1.764,204,1.764,205,1.743,206,1.261,207,1.764,208,1.743,209,1.764,210,1.764,211,1.261,212,1.764,213,1.261,214,1.764,215,1.764,216,1.764,217,1.764,218,0.93,219,1.764,220,1.764,221,2.437,222,2.793,223,3.012,224,2.437,225,1.743,226,2.437,227,2.437,228,2.437,229,2.437,230,3.012,231,3.351,232,2.437,233,2.437,234,2.437,235,2.437]],["title/cie-inspect.html",[1,0.053,175,0.71]],["contents/cie-inspect.html",[1,0.107,4,0.503,10,0.894,15,0.571,19,0.618,22,0.503,24,0.543,25,0.971,31,1.216,32,0.382,34,0.618,36,0.894,40,0.671,41,1.071,45,0.822,46,1.656,48,0.894,54,1.157,58,1.216,59,1.216,61,0.915,62,0.864,78,0.662,100,0.671,115,0.671,116,0.971,117,0.671,118,0.671,119,0.671,120,0.671,121,0.671,122,0.671,160,1.27,175,1.316,199,1.27,218,1.27,236,1.735,237,2.768,238,1.735,239,1.735,240,1.735,241,1.24,242,1.735,243,2.526,244,1.24,245,1.979,246,1.24,247,1.24,248,1.24,249,1.24,250,3.533,251,1.735,252,1.735,253,1.735,254,3.533,255,1.735,256,1.735,257,1.735,258,1.735,259,2.768,260,2.41,261,1.735,262,1.735,263,1.735,264,1.735,265,1.735,266,1.735,267,1.735,268,1.735,269,1.735,270,1.735,271,1.735,272,1.735,273,1.735,274,1.735,275,1.735,276,1.735,277,1.735,278,1.735,279,1.735,280,1.735,281,1.735,282,1.735,283,1.735,284,1.735,285,1.735,286,1.735,287,1.735,288,1.735,289,1.735,290,1.735,291,1.735,292,1.735,293,1.735,294,1.735,295,1.735,296,1.735,297,1.735,298,1.735,299,1.735,300,1.735,301,1.735,302,1.735]],["title/contrast.html",[1,0.053,177,0.71]],["contents/contrast.html",[1,0.106,14,1.451,15,0.589,16,0.818,17,0.818,18,1.451,19,0.556,23,1.115,24,0.384,25,0.891,27,1.968,31,0.818,32,0.369,40,1.333,41,1.065,42,0.215,55,1.512,58,0.818,59,0.818,62,0.581,76,1.115,78,0.581,80,0.581,81,1.512,82,0.757,85,0.757,105,1.512,111,1.613,115,0.818,116,0.841,117,0.818,118,0.818,119,0.818,120,0.818,121,0.818,122,0.818,129,1.512,161,2.463,177,1.451,178,1.512,179,1.065,180,0.818,243,1.512,244,1.512,245,1.512,246,1.512,247,1.512,248,1.512,249,1.512,303,2.115,304,1.512,305,2.115,306,2.115,307,1.512,308,1.512,309,2.115,310,2.317,311,2.115,312,2.317,313,2.115,314,2.115,315,2.115,316,2.463,317,2.753,318,1.816,319,2.115,320,2.115,321,2.115,322,2.115,323,3.06,324,2.188,325,1.968,326,2.115,327,2.753,328,2.115,329,2.115,330,2.115]],["title/CONTRIBUTING.html",[331,1.635]],["contents/CONTRIBUTING.html",[2,1.697,34,0.615,42,0.242,62,0.653,90,1.697,96,2.119,100,0.919,148,1.252,155,1.252,167,1.252,179,1.146,188,1.697,218,1.252,241,1.697,318,1.252,331,1.697,332,2.374,333,3.231,334,2.964,335,3.231,336,2.374,337,2.964,338,2.31,339,1.252,340,2.374,341,2.374,342,2.374,343,2.374,344,2.964,345,2.374,346,2.374,347,2.374,348,2.374,349,2.374,350,2.374,351,2.374,352,2.374,353,2.964,354,2.374,355,2.374,356,2.374,357,1.562,358,1.697,359,2.964,360,2.374,361,1.697,362,2.374,363,2.374,364,3.551,365,1.697,366,2.374,367,1.697,368,2.374,369,2.374,370,2.374,371,2.374,372,2.374,373,3.383,374,2.374,375,3.231,376,2.374,377,2.374,378,2.964,379,2.374,380,2.374,381,2.374,382,2.374,383,2.374,384,2.374,385,1.697,386,2.374,387,2.374,388,2.964,389,2.374,390,2.374,391,2.374,392,1.697]],["title/index.html",[154,0.968,357,0.968]],["contents/index.html",[0,0.833,1,0.106,4,0.603,7,0.831,8,1.127,9,1.22,10,0.722,13,1.611,15,0.521,16,1.173,17,1.017,19,0.409,20,1.188,22,0.573,24,0.409,32,0.386,33,1.127,34,0.603,36,0.619,39,1.127,42,0.309,43,1.879,44,1.127,45,0.722,47,1.879,48,0.619,52,2.05,61,1.188,69,1.598,71,1.188,78,0.722,80,0.433,82,0.433,84,0.872,85,0.619,86,1.127,91,0.831,99,1.127,107,1.127,108,0.831,109,1.127,110,0.831,111,1.188,112,1.127,116,0.619,131,1.127,139,1.127,148,1.385,153,1.127,154,0.831,155,0.831,156,1.611,160,0.831,165,1.511,166,1.385,167,1.598,174,0.831,175,1.017,177,1.256,179,0.61,180,0.61,182,0.831,191,0.831,193,1.662,196,1.611,199,1.188,200,1.611,201,1.127,202,1.127,205,1.127,206,1.127,208,1.127,211,1.127,213,1.127,225,1.127,304,1.127,307,1.127,308,1.127,310,1.127,312,1.127,316,1.127,318,0.831,324,1.611,325,1.611,338,1.127,339,0.831,361,1.127,365,1.611,367,1.611,385,1.611,393,2.253,394,1.127,395,2.253,396,1.611,397,1.577,398,1.577,399,1.577,400,1.577,401,2.253,402,1.577,403,1.577,404,1.577,405,2.253,406,1.577,407,1.127,408,1.577,409,1.127,410,1.577,411,1.577,412,1.577,413,1.577,414,1.577,415,1.577,416,1.577,417,1.577,418,1.577,419,1.577,420,1.577,421,1.577,422,1.577,423,1.577,424,1.577,425,1.577,426,1.577,427,1.577,428,2.253,429,1.577,430,1.577,431,2.628,432,1.577,433,1.577,434,1.577,435,1.577,436,1.577,437,1.577,438,3.154,439,1.577,440,1.577,441,1.577,442,1.577,443,1.577,444,1.577,445,2.867,446,1.577,447,1.577,448,1.577,449,1.577,450,1.577,451,1.577,452,1.577,453,1.577,454,1.577,455,1.577,456,1.577,457,2.253,458,1.577,459,2.628,460,1.577,461,1.577,462,1.577,463,1.577,464,1.577,465,1.577,466,1.577,467,1.577,468,2.628,469,2.253,470,2.628]],["title/LICENSE.html",[471,1.533,472,1.096,473,1.096]],["contents/LICENSE.html",[6,0.778,21,1.438,35,1.438,42,0.353,77,1.061,80,0.553,82,0.732,91,1.061,100,0.778,110,1.061,339,1.061,357,1.061,358,2.135,392,1.438,394,1.905,396,2.135,407,1.438,409,1.438,472,1.438,473,2.364,474,2.987,475,2.012,476,2.664,477,2.012,478,2.012,479,2.012,480,2.012,481,2.664,482,2.012,483,3.179,484,3.65,485,2.012,486,2.664,487,2.987,488,2.012,489,2.987,490,2.012,491,2.012,492,2.012,493,2.012,494,2.012,495,2.012,496,2.012,497,2.664,498,2.012,499,2.012,500,2.664,501,2.664,502,2.664,503,3.399,504,2.012,505,3.179,506,2.987,507,2.012,508,2.012,509,2.664,510,2.012,511,2.012,512,2.664,513,2.012,514,2.012,515,2.012,516,2.012,517,2.012,518,2.012,519,2.664,520,2.012,521,2.012,522,3.179,523,2.664,524,2.012,525,2.987,526,2.664,527,2.012,528,2.664,529,2.012,530,2.664,531,2.987,532,2.664,533,2.664,534,2.664,535,2.012,536,2.012,537,2.012,538,2.012,539,2.012,540,2.012,541,2.012,542,2.012,543,2.012,544,2.012,545,2.012,546,2.012,547,2.012,548,2.664,549,2.012,550,2.012,551,2.012,552,2.012,553,2.012,554,2.012,555,2.012,556,2.012,557,2.012,558,2.012,559,2.012,560,2.012,561,2.012,562,2.012,563,2.012,564,2.012,565,2.012,566,2.012,567,2.012,568,2.012,569,2.012,570,2.012,571,2.012,572,2.012,573,2.012,574,2.012,575,2.012,576,2.012]]],"invertedIndex":[["",{"_index":32,"title":{"cie-formats.html":{"position":[[4,1]]}},"contents":{"adjust.html":{"position":[[373,1],[906,1],[947,1],[1041,1],[1061,1],[1100,1],[1301,1],[1778,1],[1819,1],[1915,1],[1935,1],[1971,1],[2171,1],[2827,1],[2886,1],[2912,1],[3020,1],[3040,1],[3082,1],[3400,1],[3404,1],[3537,1],[3541,1],[3579,1],[3583,1],[3665,1],[3669,1],[3762,1],[3834,1],[3843,1],[3894,1],[3903,1],[3953,1],[3962,1],[4072,1],[4074,2],[4136,2],[4219,2],[4310,2],[4387,1],[4408,1],[4476,1],[4816,1]]},"CHANGELOG.html":{"position":[[158,1],[564,1],[814,1]]},"cie-formats.html":{"position":[[4,1],[717,1],[1070,1],[1072,2],[1129,2],[1191,1],[1211,1],[1265,1],[1653,1],[1794,1],[1796,2],[1850,2],[1915,1],[1935,1],[1989,1]]},"cie-inspect.html":{"position":[[613,1],[750,1],[910,1],[936,1],[1046,1],[1073,1],[1190,1],[1318,1],[1336,1],[1443,1],[1470,1],[1587,1],[1715,1],[1733,1],[1841,1],[1873,1],[2000,1],[2148,1],[2171,1],[2278,1],[2430,1],[2551,1],[2687,1],[2707,1],[2828,1]]},"contrast.html":{"position":[[67,1],[284,1],[757,1],[759,2],[832,2],[912,2],[942,2],[1012,1],[1037,1],[1094,1]]},"index.html":{"position":[[88,1],[961,1],[985,1],[1047,1],[1123,2],[1129,1],[1159,2],[1177,2],[1263,1],[1265,2],[1333,2],[1406,2],[1435,2],[1494,2],[1527,1],[1566,1],[1668,2],[1729,1],[1753,1],[1755,2],[1807,2],[1861,2],[1930,2],[2036,1],[2038,2],[2088,2],[2156,2],[2233,2],[2293,2],[2492,1],[2610,4],[2615,2],[2630,1],[2717,4],[2722,2],[2734,1],[2830,4],[2835,2]]}}}],["0",{"_index":40,"title":{},"contents":{"adjust.html":{"position":[[504,1],[621,1],[2324,1],[2457,1]]},"cie-formats.html":{"position":[[834,3],[883,1],[983,2],[1005,3],[1641,3],[1744,2],[1766,3]]},"cie-inspect.html":{"position":[[362,2]]},"contrast.html":{"position":[[1268,2],[1271,2],[1281,3],[1285,3],[1314,2],[1317,2]]}}}],["0.2824",{"_index":461,"title":{},"contents":{"index.html":{"position":[[2550,6]]}}}],["0.2955",{"_index":466,"title":{},"contents":{"index.html":{"position":[[2594,6]]}}}],["0.4324",{"_index":467,"title":{},"contents":{"index.html":{"position":[[2601,8]]}}}],["0.4581",{"_index":462,"title":{},"contents":{"index.html":{"position":[[2557,8]]}}}],["0.5",{"_index":430,"title":{},"contents":{"index.html":{"position":[[1153,5]]}}}],["0.6",{"_index":231,"title":{},"contents":{"cie-formats.html":{"position":[[1259,5],[1448,4],[1473,4],[1909,5],[1983,5],[2156,4],[2181,4]]}}}],["0.6431",{"_index":465,"title":{},"contents":{"index.html":{"position":[[2587,6]]}}}],["0.728",{"_index":460,"title":{},"contents":{"index.html":{"position":[[2544,5]]}}}],["000000",{"_index":326,"title":{},"contents":{"contrast.html":{"position":[[1253,7]]}}}],["005278",{"_index":70,"title":{},"contents":{"adjust.html":{"position":[[1942,8],[1962,8],[4432,8],[4687,7]]}}}],["0deg",{"_index":50,"title":{},"contents":{"adjust.html":{"position":[[707,5]]},"cie-formats.html":{"position":[[906,5]]}}}],["1",{"_index":226,"title":{},"contents":{"cie-formats.html":{"position":[[986,2],[1747,2]]}}}],["10",{"_index":438,"title":{},"contents":{"index.html":{"position":[[1772,2],[1802,4],[1825,2],[1856,4],[1880,3],[1924,5]]}}}],["100",{"_index":41,"title":{},"contents":{"adjust.html":{"position":[[510,4],[623,4],[2329,3],[2462,3],[4720,5]]},"cie-formats.html":{"position":[[838,5],[885,4],[924,4],[1009,5],[1645,5],[1685,4],[1770,5]]},"cie-inspect.html":{"position":[[263,5],[373,5],[428,5]]},"contrast.html":{"position":[[1234,5],[1327,5]]}}}],["101",{"_index":125,"title":{},"contents":{"adjust.html":{"position":[[4648,4]]}}}],["120",{"_index":131,"title":{},"contents":{"adjust.html":{"position":[[4706,4]]},"index.html":{"position":[[1112,4]]}}}],["133",{"_index":142,"title":{},"contents":{"adjust.html":{"position":[[4837,4]]}}}],["136",{"_index":135,"title":{},"contents":{"adjust.html":{"position":[[4768,4]]}}}],["14.6759120217",{"_index":282,"title":{},"contents":{"cie-inspect.html":{"position":[[1747,14]]}}}],["14.8939211974",{"_index":290,"title":{},"contents":{"cie-inspect.html":{"position":[[2185,14]]}}}],["147",{"_index":256,"title":{},"contents":{"cie-inspect.html":{"position":[[414,4]]}}}],["15",{"_index":457,"title":{},"contents":{"index.html":{"position":[[2511,3],[2515,5]]}}}],["15.7528937383",{"_index":276,"title":{},"contents":{"cie-inspect.html":{"position":[[1403,14]]}}}],["153",{"_index":120,"title":{},"contents":{"adjust.html":{"position":[[4590,4]]},"cie-formats.html":{"position":[[1254,4],[1391,4],[1443,4],[1978,4],[2099,4],[2151,4]]},"cie-inspect.html":{"position":[[309,4]]},"contrast.html":{"position":[[1365,4]]}}}],["160",{"_index":53,"title":{},"contents":{"adjust.html":{"position":[[815,4],[874,4],[2696,3],[2704,3],[2786,3],[2794,3]]},"cie-formats.html":{"position":[[1674,6]]}}}],["18",{"_index":127,"title":{},"contents":{"adjust.html":{"position":[[4662,4]]}}}],["2",{"_index":140,"title":{},"contents":{"adjust.html":{"position":[[4818,1]]}}}],["2.5389948734",{"_index":274,"title":{},"contents":{"cie-inspect.html":{"position":[[1350,13]]}}}],["20",{"_index":61,"title":{},"contents":{"adjust.html":{"position":[[991,4],[1036,4],[4091,2],[4128,3],[4625,2]]},"cie-inspect.html":{"position":[[410,3]]},"index.html":{"position":[[2055,2],[2080,3]]}}}],["2019",{"_index":475,"title":{},"contents":{"LICENSE.html":{"position":[[10,4]]}}}],["2020",{"_index":464,"title":{},"contents":{"index.html":{"position":[[2582,4]]}}}],["2020.05.06",{"_index":185,"title":{},"contents":{"CHANGELOG.html":{"position":[[892,10]]}}}],["2020.05.27",{"_index":150,"title":{},"contents":{"CHANGELOG.html":{"position":[[25,10]]}}}],["213",{"_index":247,"title":{},"contents":{"cie-inspect.html":{"position":[[250,4]]},"contrast.html":{"position":[[1221,4]]}}}],["239",{"_index":246,"title":{},"contents":{"cie-inspect.html":{"position":[[245,4]]},"contrast.html":{"position":[[1216,4]]}}}],["24",{"_index":133,"title":{},"contents":{"adjust.html":{"position":[[4726,4]]}}}],["244",{"_index":143,"title":{},"contents":{"adjust.html":{"position":[[4842,4]]}}}],["248",{"_index":136,"title":{},"contents":{"adjust.html":{"position":[[4773,4]]}}}],["25",{"_index":330,"title":{},"contents":{"contrast.html":{"position":[[1333,4]]}}}],["255",{"_index":252,"title":{},"contents":{"cie-inspect.html":{"position":[[357,4]]}}}],["2l",{"_index":112,"title":{},"contents":{"adjust.html":{"position":[[4376,3]]},"index.html":{"position":[[2282,3]]}}}],["300",{"_index":427,"title":{},"contents":{"index.html":{"position":[[1066,5]]}}}],["308.8616067109deg",{"_index":300,"title":{},"contents":{"cie-inspect.html":{"position":[[2754,18]]}}}],["308.86deg",{"_index":229,"title":{},"contents":{"cie-formats.html":{"position":[[1117,11],[1174,10]]}}}],["32.3927863513",{"_index":267,"title":{},"contents":{"cie-inspect.html":{"position":[[980,15]]}}}],["34",{"_index":128,"title":{},"contents":{"adjust.html":{"position":[[4667,4]]}}}],["357.1743141408deg",{"_index":302,"title":{},"contents":{"cie-inspect.html":{"position":[[2809,18]]}}}],["360deg",{"_index":51,"title":{},"contents":{"adjust.html":{"position":[[713,7]]},"cie-formats.html":{"position":[[912,7]]}}}],["38.4284034785",{"_index":275,"title":{},"contents":{"cie-inspect.html":{"position":[[1379,14]]}}}],["38.43",{"_index":234,"title":{},"contents":{"cie-formats.html":{"position":[[1835,5],[1895,5]]}}}],["4",{"_index":395,"title":{},"contents":{"index.html":{"position":[[86,1],[2364,1]]}}}],["4.1193014063",{"_index":285,"title":{},"contents":{"cie-inspect.html":{"position":[[1827,13]]}}}],["4.5",{"_index":325,"title":{},"contents":{"contrast.html":{"position":[[945,3],[1006,5]]},"index.html":{"position":[[1438,3],[1488,5]]}}}],["40",{"_index":122,"title":{},"contents":{"adjust.html":{"position":[[4609,4]]},"cie-formats.html":{"position":[[1410,4],[1468,4],[2118,4],[2176,4]]},"cie-inspect.html":{"position":[[328,4]]},"contrast.html":{"position":[[1384,4]]}}}],["47.69",{"_index":235,"title":{},"contents":{"cie-formats.html":{"position":[[1842,7],[1902,6]]}}}],["47.6901973328",{"_index":283,"title":{},"contents":{"cie-inspect.html":{"position":[[1778,14]]}}}],["5",{"_index":17,"title":{},"contents":{"adjust.html":{"position":[[177,1]]},"CHANGELOG.html":{"position":[[865,1]]},"contrast.html":{"position":[[166,2]]},"index.html":{"position":[[96,1],[1223,1],[2004,1]]}}}],["50",{"_index":78,"title":{},"contents":{"adjust.html":{"position":[[2965,5],[3014,5],[4298,4],[4604,4],[4747,3]]},"cie-formats.html":{"position":[[1405,4],[1463,4],[2113,4],[2171,4]]},"cie-inspect.html":{"position":[[323,4],[379,4]]},"contrast.html":{"position":[[1379,4]]},"index.html":{"position":[[1063,2],[1117,5],[2221,4]]}}}],["51",{"_index":119,"title":{},"contents":{"adjust.html":{"position":[[4586,3]]},"cie-formats.html":{"position":[[1250,3],[1387,3],[1439,3],[1974,3],[2095,3],[2147,3]]},"cie-inspect.html":{"position":[[305,3]]},"contrast.html":{"position":[[1361,3]]}}}],["54",{"_index":258,"title":{},"contents":{"cie-inspect.html":{"position":[[434,4]]}}}],["56.6052673708",{"_index":269,"title":{},"contents":{"cie-inspect.html":{"position":[[1030,15]]}}}],["574665",{"_index":63,"title":{},"contents":{"adjust.html":{"position":[[1071,8],[1091,8],[4415,8],[4628,7]]}}}],["60",{"_index":69,"title":{},"contents":{"adjust.html":{"position":[[1861,4],[1910,4],[4214,4],[4684,2]]},"cie-formats.html":{"position":[[1132,3],[1185,5],[1853,3]]},"index.html":{"position":[[1087,2],[1090,4],[1146,2],[1149,3],[2151,4]]}}}],["61.2462008254",{"_index":291,"title":{},"contents":{"cie-inspect.html":{"position":[[2215,14]]}}}],["61.25",{"_index":228,"title":{},"contents":{"cie-formats.html":{"position":[[1111,5],[1168,5]]}}}],["663399",{"_index":117,"title":{},"contents":{"adjust.html":{"position":[[4569,7]]},"cie-formats.html":{"position":[[1370,7],[1421,7],[2078,7],[2129,7]]},"cie-inspect.html":{"position":[[288,7]]},"contrast.html":{"position":[[1344,7]]}}}],["70",{"_index":124,"title":{},"contents":{"adjust.html":{"position":[[4644,3]]}}}],["74",{"_index":146,"title":{},"contents":{"adjust.html":{"position":[[4861,4]]}}}],["75",{"_index":139,"title":{},"contents":{"adjust.html":{"position":[[4792,4]]},"index.html":{"position":[[1109,2]]}}}],["80.1847432252deg",{"_index":299,"title":{},"contents":{"cie-inspect.html":{"position":[[2721,17]]}}}],["800000",{"_index":328,"title":{},"contents":{"contrast.html":{"position":[[1297,7]]}}}],["82",{"_index":130,"title":{},"contents":{"adjust.html":{"position":[[4702,3]]}}}],["83",{"_index":145,"title":{},"contents":{"adjust.html":{"position":[[4856,4]]}}}],["83.4583942761",{"_index":277,"title":{},"contents":{"cie-inspect.html":{"position":[[1428,14]]}}}],["83.5599917378",{"_index":293,"title":{},"contents":{"cie-inspect.html":{"position":[[2263,14]]}}}],["89",{"_index":138,"title":{},"contents":{"adjust.html":{"position":[[4787,4]]}}}],["92",{"_index":249,"title":{},"contents":{"cie-inspect.html":{"position":[[269,4]]},"contrast.html":{"position":[[1240,4]]}}}],["93.3884904256",{"_index":284,"title":{},"contents":{"cie-inspect.html":{"position":[[1801,14]]}}}],["94.7077811222",{"_index":292,"title":{},"contents":{"cie-inspect.html":{"position":[[2238,14]]}}}],["95.228994537",{"_index":266,"title":{},"contents":{"cie-inspect.html":{"position":[[950,14]]}}}],["97.6071273304",{"_index":268,"title":{},"contents":{"cie-inspect.html":{"position":[[1004,15]]}}}],["99.5745966976deg",{"_index":301,"title":{},"contents":{"cie-inspect.html":{"position":[[2781,17]]}}}],["_(ツ)_",{"_index":189,"title":{},"contents":{"CHANGELOG.html":{"position":[[985,9]]}}}],["abil",{"_index":5,"title":{},"contents":{"adjust.html":{"position":[[58,7]]}}}],["abov",{"_index":501,"title":{},"contents":{"LICENSE.html":{"position":[[460,5],[1140,6]]}}}],["accept",{"_index":168,"title":{},"contents":{"CHANGELOG.html":{"position":[[269,7]]}}}],["access",{"_index":307,"title":{},"contents":{"contrast.html":{"position":[[69,14]]},"index.html":{"position":[[212,6]]}}}],["achiev",{"_index":215,"title":{},"contents":{"cie-formats.html":{"position":[[523,7]]}}}],["action",{"_index":564,"title":{},"contents":{"LICENSE.html":{"position":[[1947,6]]}}}],["activ",{"_index":509,"title":{},"contents":{"LICENSE.html":{"position":[[646,10],[662,8]]}}}],["add",{"_index":103,"title":{},"contents":{"adjust.html":{"position":[[3700,3]]},"CHANGELOG.html":{"position":[[628,3]]}}}],["adjust",{"_index":9,"title":{},"contents":{"adjust.html":{"position":[[104,6],[276,8],[427,8],[1112,8],[1121,6],[1204,8],[1355,8],[1390,6],[1486,6],[1576,6],[1672,6],[1719,6],[1762,6],[2074,8],[2225,8],[2530,6],[3179,12],[3816,8],[3855,11],[3915,11],[3974,11],[4041,11],[4146,11],[4171,7],[4424,7],[4672,6]]},"CHANGELOG.html":{"position":[[570,12],[616,8],[776,6]]},"cie-formats.html":{"position":[[273,11]]},"index.html":{"position":[[147,10],[335,11],[1707,11],[1744,8],[1810,6],[2098,11]]}}}],["advantag",{"_index":3,"title":{},"contents":{"adjust.html":{"position":[[28,9]]}}}],["affect",{"_index":542,"title":{},"contents":{"LICENSE.html":{"position":[[1489,8]]}}}],["again",{"_index":404,"title":{},"contents":{"index.html":{"position":[[541,6]]}}}],["against",{"_index":309,"title":{},"contents":{"contrast.html":{"position":[[332,7]]}}}],["agreement",{"_index":544,"title":{},"contents":{"LICENSE.html":{"position":[[1546,9]]}}}],["alpha",{"_index":222,"title":{},"contents":{"cie-formats.html":{"position":[[938,5],[1699,5],[1857,5]]}}}],["amend",{"_index":573,"title":{},"contents":{"LICENSE.html":{"position":[[2200,7]]}}}],["amount",{"_index":66,"title":{},"contents":{"adjust.html":{"position":[[1181,7],[1416,6],[1509,6],[1694,6],[1741,6],[3688,6],[3721,6]]}}}],["and/or",{"_index":495,"title":{},"contents":{"LICENSE.html":{"position":[[317,6]]}}}],["angl",{"_index":49,"title":{},"contents":{"adjust.html":{"position":[[679,7],[701,5]]},"CHANGELOG.html":{"position":[[281,5]]},"cie-formats.html":{"position":[[900,5]]}}}],["anoth",{"_index":8,"title":{},"contents":{"adjust.html":{"position":[[93,7]]},"index.html":{"position":[[524,7]]}}}],["anyon",{"_index":507,"title":{},"contents":{"LICENSE.html":{"position":[[624,6]]}}}],["applic",{"_index":539,"title":{},"contents":{"LICENSE.html":{"position":[[1345,11]]}}}],["argument",{"_index":26,"title":{},"contents":{"adjust.html":{"position":[[296,9],[1224,9],[2094,9]]}}}],["aris",{"_index":567,"title":{},"contents":{"LICENSE.html":{"position":[[1986,7]]}}}],["array",{"_index":450,"title":{},"contents":{"index.html":{"position":[[2378,5]]}}}],["ask",{"_index":341,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[143,3]]}}}],["associ",{"_index":485,"title":{},"contents":{"LICENSE.html":{"position":[[121,10]]}}}],["atkin",{"_index":418,"title":{},"contents":{"index.html":{"position":[[799,7]]}}}],["author",{"_index":557,"title":{},"contents":{"LICENSE.html":{"position":[[1851,7]]}}}],["avail",{"_index":101,"title":{},"contents":{"adjust.html":{"position":[[3647,9]]}}}],["b",{"_index":54,"title":{},"contents":{"adjust.html":{"position":[[820,3],[850,1],[1701,3],[1730,1],[2708,3],[2740,1]]},"CHANGELOG.html":{"position":[[440,3]]},"cie-formats.html":{"position":[[1598,1],[1655,1]]},"cie-inspect.html":{"position":[[1455,3],[1546,3],[1584,2],[1730,2]]}}}],["back",{"_index":211,"title":{},"contents":{"cie-formats.html":{"position":[[439,4]]},"index.html":{"position":[[536,4]]}}}],["base",{"_index":85,"title":{},"contents":{"adjust.html":{"position":[[3192,5],[3321,5]]},"CHANGELOG.html":{"position":[[542,5],[839,5]]},"cie-formats.html":{"position":[[94,5]]},"contrast.html":{"position":[[309,4],[506,4]]},"index.html":{"position":[[1195,5],[1961,5]]}}}],["be",{"_index":35,"title":{},"contents":{"adjust.html":{"position":[[421,5],[1349,5],[2219,5],[3810,5]]},"LICENSE.html":{"position":[[771,5]]}}}],["befor",{"_index":346,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[207,6]]}}}],["best",{"_index":179,"title":{},"contents":{"CHANGELOG.html":{"position":[[491,4]]},"contrast.html":{"position":[[236,4],[781,4]]},"CONTRIBUTING.html":{"position":[[90,4],[406,4]]},"index.html":{"position":[[1295,4]]}}}],["better",{"_index":311,"title":{},"contents":{"contrast.html":{"position":[[380,6]]}}}],["between",{"_index":39,"title":{},"contents":{"adjust.html":{"position":[[496,7]]},"index.html":{"position":[[299,7]]}}}],["bf85f4",{"_index":114,"title":{},"contents":{"adjust.html":{"position":[[4467,8],[4820,7]]}}}],["big",{"_index":349,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[251,3]]}}}],["black",{"_index":310,"title":{},"contents":{"contrast.html":{"position":[[353,7],[399,5],[762,5],[1048,6]]},"index.html":{"position":[[1276,5]]}}}],["blend",{"_index":148,"title":{},"contents":{"CHANGELOG.html":{"position":[[0,5]]},"CONTRIBUTING.html":{"position":[[16,5]]},"index.html":{"position":[[25,5],[191,5],[2469,8]]}}}],["blend.a($color",{"_index":434,"title":{},"contents":{"index.html":{"position":[[1593,16]]}}}],["blend.a(deeppink",{"_index":273,"title":{},"contents":{"cie-inspect.html":{"position":[[1299,18]]}}}],["blend.a(papayawhip",{"_index":270,"title":{},"contents":{"cie-inspect.html":{"position":[[1204,20]]}}}],["blend.a(rebeccapurpl",{"_index":271,"title":{},"contents":{"cie-inspect.html":{"position":[[1240,23]]}}}],["blend.a(yellow",{"_index":272,"title":{},"contents":{"cie-inspect.html":{"position":[[1272,16]]}}}],["blend.adjust($color",{"_index":440,"title":{},"contents":{"index.html":{"position":[[1828,20]]}}}],["blend.adjust(rebeccapurpl",{"_index":68,"title":{},"contents":{"adjust.html":{"position":[[1826,27],[1877,27],[2925,27],[2982,27]]}}}],["blend.b($color",{"_index":435,"title":{},"contents":{"index.html":{"position":[[1610,16]]}}}],["blend.b(deeppink",{"_index":281,"title":{},"contents":{"cie-inspect.html":{"position":[[1696,18]]}}}],["blend.b(papayawhip",{"_index":278,"title":{},"contents":{"cie-inspect.html":{"position":[[1601,20]]}}}],["blend.b(rebeccapurpl",{"_index":279,"title":{},"contents":{"cie-inspect.html":{"position":[[1637,23]]}}}],["blend.b(yellow",{"_index":280,"title":{},"contents":{"cie-inspect.html":{"position":[[1669,16]]}}}],["blend.chroma($color",{"_index":436,"title":{},"contents":{"index.html":{"position":[[1627,21]]}}}],["blend.chroma(deeppink",{"_index":289,"title":{},"contents":{"cie-inspect.html":{"position":[[2124,23]]}}}],["blend.chroma(papayawhip",{"_index":286,"title":{},"contents":{"cie-inspect.html":{"position":[[2014,25]]}}}],["blend.chroma(rebeccapurpl",{"_index":287,"title":{},"contents":{"cie-inspect.html":{"position":[[2055,28]]}}}],["blend.chroma(yellow",{"_index":288,"title":{},"contents":{"cie-inspect.html":{"position":[[2092,21]]}}}],["blend.color(display",{"_index":458,"title":{},"contents":{"index.html":{"position":[[2521,19]]}}}],["blend.color(rec",{"_index":463,"title":{},"contents":{"index.html":{"position":[[2566,15]]}}}],["blend.contrast($color",{"_index":431,"title":{},"contents":{"index.html":{"position":[[1309,23],[1353,22],[1442,22]]}}}],["blend.contrast(papayawhip",{"_index":323,"title":{},"contents":{"contrast.html":{"position":[[804,27],[861,26],[956,26]]}}}],["blend.from($color",{"_index":445,"title":{},"contents":{"index.html":{"position":[[2058,18],[2123,18],[2200,18],[2263,18]]}}}],["blend.from(rebeccapurpl",{"_index":106,"title":{},"contents":{"adjust.html":{"position":[[4099,25],[4179,25],[4270,25],[4350,25]]}}}],["blend.get($color",{"_index":468,"title":{},"contents":{"index.html":{"position":[[2632,17],[2658,17],[2684,17]]}}}],["blend.hue($color",{"_index":437,"title":{},"contents":{"index.html":{"position":[[1649,18]]}}}],["blend.hue(deeppink",{"_index":298,"title":{},"contents":{"cie-inspect.html":{"position":[[2666,20]]}}}],["blend.hue(papayawhip",{"_index":295,"title":{},"contents":{"cie-inspect.html":{"position":[[2565,22]]}}}],["blend.hue(rebeccapurpl",{"_index":296,"title":{},"contents":{"cie-inspect.html":{"position":[[2603,25]]}}}],["blend.hue(yellow",{"_index":297,"title":{},"contents":{"cie-inspect.html":{"position":[[2637,18]]}}}],["blend.hwb(120deg",{"_index":456,"title":{},"contents":{"index.html":{"position":[[2494,16]]}}}],["blend.lab(32.39",{"_index":233,"title":{},"contents":{"cie-formats.html":{"position":[[1818,16],[1878,16]]}}}],["blend.lab(60",{"_index":428,"title":{},"contents":{"index.html":{"position":[[1072,13],[1131,13]]}}}],["blend.lch(30",{"_index":426,"title":{},"contents":{"index.html":{"position":[[1049,13]]}}}],["blend.lch(32.39",{"_index":227,"title":{},"contents":{"cie-formats.html":{"position":[[1094,16],[1151,16]]}}}],["blend.lch(60",{"_index":429,"title":{},"contents":{"index.html":{"position":[[1095,13]]}}}],["blend.lightness($color",{"_index":433,"title":{},"contents":{"index.html":{"position":[[1568,24]]}}}],["blend.lightness(deeppink",{"_index":265,"title":{},"contents":{"cie-inspect.html":{"position":[[883,26]]}}}],["blend.lightness(papayawhip",{"_index":262,"title":{},"contents":{"cie-inspect.html":{"position":[[764,28]]}}}],["blend.lightness(rebeccapurpl",{"_index":263,"title":{},"contents":{"cie-inspect.html":{"position":[[808,31]]}}}],["blend.lightness(yellow",{"_index":264,"title":{},"contents":{"cie-inspect.html":{"position":[[848,24]]}}}],["blend.scale($color",{"_index":442,"title":{},"contents":{"index.html":{"position":[[1892,19]]}}}],["blend.set($color",{"_index":439,"title":{},"contents":{"index.html":{"position":[[1775,17]]}}}],["blend.set(rebeccapurpl",{"_index":60,"title":{},"contents":{"adjust.html":{"position":[[957,24],[1007,24]]}}}],["blend.string($color",{"_index":470,"title":{},"contents":{"index.html":{"position":[[2736,20],[2765,20],[2794,20]]}}}],["both",{"_index":56,"title":{},"contents":{"adjust.html":{"position":[[897,4],[1769,4],[2818,4]]},"cie-formats.html":{"position":[[1661,4]]}}}],["break",{"_index":151,"title":{},"contents":{"CHANGELOG.html":{"position":[[36,9],[115,9]]}}}],["browser",{"_index":202,"title":{},"contents":{"cie-formats.html":{"position":[[212,9]]},"index.html":{"position":[[415,9]]}}}],["bug",{"_index":340,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[130,4]]}}}],["bugfix",{"_index":356,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[320,7]]}}}],["build",{"_index":380,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[758,5]]}}}],["built",{"_index":237,"title":{},"contents":{"cie-inspect.html":{"position":[[34,5],[565,5],[2388,5]]}}}],["c",{"_index":47,"title":{},"contents":{"adjust.html":{"position":[[646,2],[1032,3],[1534,2],[2484,2],[3402,1],[3539,1],[3581,1],[3667,1],[3885,3],[3889,1],[3891,2],[3905,1],[3934,1],[4208,2],[4303,2],[4380,2]]},"index.html":{"position":[[2145,2],[2226,2],[2286,2]]}}}],["c388f8",{"_index":113,"title":{},"contents":{"adjust.html":{"position":[[4448,8],[4751,7]]}}}],["chang",{"_index":96,"title":{},"contents":{"adjust.html":{"position":[[3423,6]]},"CONTRIBUTING.html":{"position":[[376,7],[671,7]]}}}],["changelog",{"_index":147,"title":{"CHANGELOG.html":{"position":[[0,9]]}},"contents":{"CHANGELOG.html":{"position":[[6,9]]}}}],["channel",{"_index":10,"title":{},"contents":{"adjust.html":{"position":[[111,9],[232,8],[793,7],[852,7],[912,8],[1150,8],[1784,8],[2016,8],[2833,8],[3357,8],[3384,7],[3458,7],[3507,7],[3569,7],[3627,7],[3876,8],[3936,7],[3995,7],[4163,7],[4326,7]]},"CHANGELOG.html":{"position":[[261,7],[602,7],[651,7],[709,7]]},"cie-formats.html":{"position":[[792,7],[1600,7]]},"cie-inspect.html":{"position":[[133,7],[705,7],[1153,7],[1550,7],[1958,7],[2512,7]]},"index.html":{"position":[[1735,8],[2115,7],[2249,7]]}}}],["charg",{"_index":480,"title":{},"contents":{"LICENSE.html":{"position":[[61,7]]}}}],["check",{"_index":408,"title":{},"contents":{"index.html":{"position":[[662,5]]}}}],["chri",{"_index":415,"title":{},"contents":{"index.html":{"position":[[778,5]]}}}],["chroma",{"_index":45,"title":{},"contents":{"adjust.html":{"position":[[555,8],[582,6],[949,7],[982,8],[1063,7],[1463,8],[1493,6],[2373,8],[2406,6],[4081,6],[4618,6]]},"CHANGELOG.html":{"position":[[444,8],[798,7]]},"cie-formats.html":{"position":[[503,6],[776,7],[844,6]]},"cie-inspect.html":{"position":[[1853,8],[1949,8],[1992,7],[2163,7]]},"index.html":{"position":[[1762,6],[1793,8],[2045,6]]}}}],["cie",{"_index":166,"title":{},"contents":{"CHANGELOG.html":{"position":[[231,3],[783,3]]},"cie-formats.html":{"position":[[447,3],[572,3]]},"index.html":{"position":[[975,5],[1033,4],[2342,3]]}}}],["circumst",{"_index":541,"title":{},"contents":{"LICENSE.html":{"position":[[1389,13]]}}}],["claim",{"_index":560,"title":{},"contents":{"LICENSE.html":{"position":[[1898,6]]}}}],["claus",{"_index":529,"title":{},"contents":{"LICENSE.html":{"position":[[1133,6]]}}}],["clone",{"_index":362,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[449,5]]}}}],["closest",{"_index":217,"title":{},"contents":{"cie-formats.html":{"position":[[554,7]]}}}],["code",{"_index":375,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[666,4],[817,4],[961,4]]}}}],["codebas",{"_index":371,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[579,8]]}}}],["color",{"_index":1,"title":{"adjust.html":{"position":[[9,6]]},"cie-inspect.html":{"position":[[11,6]]},"contrast.html":{"position":[[0,5]]}},"contents":{"adjust.html":{"position":[[9,6],[45,5],[82,5],[164,6],[285,6],[382,7],[390,7],[415,5],[1213,6],[1310,7],[1318,7],[1343,5],[2083,6],[2180,7],[2188,7],[2213,5],[3227,5],[3771,7],[3779,7],[3804,5],[4011,7],[4029,5],[4540,5]]},"CHANGELOG.html":{"position":[[365,5],[409,5],[535,6],[751,5],[852,6],[945,5]]},"cie-formats.html":{"position":[[61,5],[235,5],[390,5],[576,6],[682,6],[1023,7],[1351,5],[1506,6],[2059,5]]},"cie-inspect.html":{"position":[[11,6],[91,6],[194,7],[202,5],[622,7],[630,7],[647,5],[720,5],[1082,7],[1090,7],[1107,5],[1168,5],[1479,7],[1487,7],[1504,5],[1565,5],[1882,7],[1890,7],[1907,5],[1973,5],[2439,7],[2447,7],[2464,5],[2527,5]]},"contrast.html":{"position":[[0,5],[146,5],[179,5],[265,7],[293,7],[301,7],[314,5],[457,7],[511,6],[594,5],[656,7],[1108,5],[1173,5]]},"index.html":{"position":[[35,5],[67,5],[122,5],[141,5],[270,7],[307,5],[499,5],[582,5],[623,5],[690,5],[991,5],[1025,7],[1180,5],[1225,5],[1415,5],[1508,6],[1548,7],[1680,6],[1701,5],[1944,5],[2015,5],[2346,7]]}}}],["color.hu",{"_index":294,"title":{},"contents":{"cie-inspect.html":{"position":[[2397,11]]}}}],["color.light",{"_index":261,"title":{},"contents":{"cie-inspect.html":{"position":[[574,17]]}}}],["colormetr",{"_index":216,"title":{},"contents":{"cie-formats.html":{"position":[[542,11]]}}}],["commit",{"_index":386,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[873,6]]}}}],["commun",{"_index":390,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[928,9]]}}}],["compact",{"_index":83,"title":{},"contents":{"adjust.html":{"position":[[3156,7]]}}}],["compar",{"_index":315,"title":{},"contents":{"contrast.html":{"position":[[468,7]]}}}],["compet",{"_index":536,"title":{},"contents":{"LICENSE.html":{"position":[[1278,9]]}}}],["compil",{"_index":62,"title":{},"contents":{"adjust.html":{"position":[[1047,8],[1921,8],[3026,8],[4393,8]]},"cie-formats.html":{"position":[[332,8],[1197,8],[1921,8]]},"cie-inspect.html":{"position":[[916,8],[1324,8],[1721,8],[2154,8],[2693,8]]},"contrast.html":{"position":[[1018,8]]},"CONTRIBUTING.html":{"position":[[805,7]]}}}],["complic",{"_index":159,"title":{},"contents":{"CHANGELOG.html":{"position":[[137,11]]}}}],["condit",{"_index":500,"title":{},"contents":{"LICENSE.html":{"position":[[444,11],[1034,9]]}}}],["conduct",{"_index":388,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[897,7],[969,8]]}}}],["connect",{"_index":568,"title":{},"contents":{"LICENSE.html":{"position":[[2013,10]]}}}],["consist",{"_index":12,"title":{},"contents":{"adjust.html":{"position":[[132,10]]}}}],["contract",{"_index":565,"title":{},"contents":{"LICENSE.html":{"position":[[1957,9]]}}}],["contrast",{"_index":177,"title":{"contrast.html":{"position":[[6,8]]}},"contents":{"CHANGELOG.html":{"position":[[468,10],[496,8]]},"contrast.html":{"position":[[6,8],[22,8],[131,10],[185,10],[241,8],[323,8],[387,8],[488,8],[539,8],[629,8],[692,9],[747,9],[786,8],[843,8],[933,8],[1027,9],[1114,10]]},"index.html":{"position":[[172,8],[1186,8],[1231,10],[1252,10],[1300,8],[1344,8],[1426,8]]}}}],["contribut",{"_index":331,"title":{"CONTRIBUTING.html":{"position":[[0,12]]}},"contents":{"CONTRIBUTING.html":{"position":[[0,12]]}}}],["convers",{"_index":165,"title":{},"contents":{"CHANGELOG.html":{"position":[[208,10]]},"cie-formats.html":{"position":[[247,10]]},"index.html":{"position":[[288,10],[383,10],[733,10],[997,10]]}}}],["convert",{"_index":182,"title":{},"contents":{"CHANGELOG.html":{"position":[[735,8]]},"cie-formats.html":{"position":[[139,9],[396,9],[1031,9]]},"index.html":{"position":[[486,10]]}}}],["copi",{"_index":483,"title":{},"contents":{"LICENSE.html":{"position":[[95,4],[263,5],[329,6],[535,6]]}}}],["copyright",{"_index":474,"title":{},"contents":{"LICENSE.html":{"position":[[0,9],[466,9],[1862,9]]}}}],["court",{"_index":535,"title":{},"contents":{"LICENSE.html":{"position":[[1269,5]]}}}],["css",{"_index":15,"title":{},"contents":{"adjust.html":{"position":[[160,3],[1043,3],[1917,3],[3022,3],[3214,3],[3334,3],[4389,3],[4486,3]]},"CHANGELOG.html":{"position":[[848,3]]},"cie-formats.html":{"position":[[107,3],[625,3],[1193,3],[1275,3],[1917,3],[1999,3]]},"cie-inspect.html":{"position":[[912,3],[1320,3],[1717,3],[2150,3],[2689,3]]},"contrast.html":{"position":[[92,3],[142,3],[1014,3],[1104,3]]},"index.html":{"position":[[31,3],[63,3],[118,3],[619,3]]}}}],["current",{"_index":97,"title":{},"contents":{"adjust.html":{"position":[[3437,7],[3499,7],[3737,7]]}}}],["cyan",{"_index":432,"title":{},"contents":{"index.html":{"position":[[1399,6]]}}}],["damag",{"_index":561,"title":{},"contents":{"LICENSE.html":{"position":[[1905,7]]}}}],["dart",{"_index":367,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[524,4]]},"index.html":{"position":[[52,4],[923,4]]}}}],["data",{"_index":209,"title":{},"contents":{"cie-formats.html":{"position":[[364,4]]}}}],["deal",{"_index":486,"title":{},"contents":{"LICENSE.html":{"position":[[173,4],[2062,8]]}}}],["declar",{"_index":522,"title":{},"contents":{"LICENSE.html":{"position":[[854,11],[915,11],[1230,8],[1441,8]]}}}],["deeppink",{"_index":254,"title":{},"contents":{"cie-inspect.html":{"position":[[384,8],[873,9],[1020,9],[1289,9],[1418,9],[1686,9],[1816,9],[2114,9],[2253,9],[2656,9],[2799,9]]}}}],["default",{"_index":312,"title":{},"contents":{"contrast.html":{"position":[[417,8],[795,8],[1039,8],[1245,7]]},"index.html":{"position":[[1268,7]]}}}],["defin",{"_index":76,"title":{},"contents":{"adjust.html":{"position":[[2872,7]]},"cie-formats.html":{"position":[[670,6],[1494,6]]},"contrast.html":{"position":[[169,7]]}}}],["deg",{"_index":172,"title":{},"contents":{"CHANGELOG.html":{"position":[[318,4]]}}}],["degre",{"_index":67,"title":{},"contents":{"adjust.html":{"position":[[1606,7]]}}}],["demo",{"_index":241,"title":{},"contents":{"cie-inspect.html":{"position":[[159,6]]},"CONTRIBUTING.html":{"position":[[825,5]]}}}],["depend",{"_index":366,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[506,12]]}}}],["deriv",{"_index":572,"title":{},"contents":{"LICENSE.html":{"position":[[2170,7]]}}}],["design",{"_index":305,"title":{},"contents":{"contrast.html":{"position":[[48,6]]}}}],["dev",{"_index":423,"title":{},"contents":{"index.html":{"position":[[907,3]]}}}],["develop",{"_index":90,"title":{},"contents":{"adjust.html":{"position":[[3299,9]]},"CONTRIBUTING.html":{"position":[[494,11]]}}}],["differ",{"_index":213,"title":{},"contents":{"cie-formats.html":{"position":[[467,9]]},"index.html":{"position":[[569,12]]}}}],["directori",{"_index":374,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[645,10]]}}}],["discuss",{"_index":344,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[181,7],[414,7]]}}}],["display",{"_index":469,"title":{},"contents":{"index.html":{"position":[[2702,8],[2815,8]]}}}],["distanc",{"_index":73,"title":{},"contents":{"adjust.html":{"position":[[2307,8],[2440,8],[2679,8],[2769,8]]}}}],["distribut",{"_index":493,"title":{},"contents":{"LICENSE.html":{"position":[[293,11]]}}}],["doc",{"_index":379,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[748,4]]}}}],["document",{"_index":357,"title":{"index.html":{"position":[[15,13]]}},"contents":{"CONTRIBUTING.html":{"position":[[331,14],[768,13]]},"LICENSE.html":{"position":[[132,13]]}}}],["down",{"_index":65,"title":{},"contents":{"adjust.html":{"position":[[1165,4],[2031,4]]}}}],["download",{"_index":420,"title":{},"contents":{"index.html":{"position":[[813,8]]}}}],["e.g",{"_index":108,"title":{},"contents":{"adjust.html":{"position":[[4238,4]]},"CHANGELOG.html":{"position":[[292,5]]},"index.html":{"position":[[2175,4]]}}}],["e3c0ff",{"_index":79,"title":{},"contents":{"adjust.html":{"position":[[3053,8],[3073,8]]}}}],["each",{"_index":91,"title":{},"contents":{"adjust.html":{"position":[[3352,4]]},"index.html":{"position":[[475,4]]},"LICENSE.html":{"position":[[1511,4]]}}}],["eagerli",{"_index":198,"title":{},"contents":{"cie-formats.html":{"position":[[131,7]]}}}],["earli",{"_index":398,"title":{},"contents":{"index.html":{"position":[[206,5]]}}}],["econom",{"_index":516,"title":{},"contents":{"LICENSE.html":{"position":[[745,9]]}}}],["end",{"_index":181,"title":{},"contents":{"CHANGELOG.html":{"position":[[696,5]]}}}],["endang",{"_index":511,"title":{},"contents":{"LICENSE.html":{"position":[[685,9]]}}}],["enforc",{"_index":530,"title":{},"contents":{"LICENSE.html":{"position":[[1147,15],[1575,11]]}}}],["enhanc",{"_index":455,"title":{},"contents":{"index.html":{"position":[[2450,13]]}}}],["error",{"_index":55,"title":{},"contents":{"adjust.html":{"position":[[879,6],[1748,6],[2798,6],[2850,6],[3103,7]]},"contrast.html":{"position":[[1155,7]]}}}],["ethic",{"_index":570,"title":{},"contents":{"LICENSE.html":{"position":[[2119,7]]}}}],["event",{"_index":556,"title":{},"contents":{"LICENSE.html":{"position":[[1835,5]]}}}],["exactli",{"_index":88,"title":{},"contents":{"adjust.html":{"position":[[3284,8]]}}}],["exampl",{"_index":58,"title":{},"contents":{"adjust.html":{"position":[[929,7],[1801,7],[2894,7],[4053,7]]},"cie-formats.html":{"position":[[1052,7],[1776,7]]},"cie-inspect.html":{"position":[[726,7],[1174,7],[1571,7],[1979,7],[2533,7]]},"contrast.html":{"position":[[734,7]]}}}],["expect",{"_index":11,"title":{},"contents":{"adjust.html":{"position":[[125,6]]}}}],["experi",{"_index":384,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[843,11]]}}}],["express",{"_index":550,"title":{},"contents":{"LICENSE.html":{"position":[[1691,7]]}}}],["extent",{"_index":532,"title":{},"contents":{"LICENSE.html":{"position":[[1220,6],[1602,6]]}}}],["extern",{"_index":18,"title":{},"contents":{"adjust.html":{"position":[[179,10],[4504,10]]},"cie-formats.html":{"position":[[643,10],[1299,10],[2023,10]]},"contrast.html":{"position":[[110,10],[1125,10]]}}}],["fall",{"_index":219,"title":{},"contents":{"cie-formats.html":{"position":[[588,4]]}}}],["featur",{"_index":338,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[114,8],[198,8],[391,9]]},"index.html":{"position":[[236,9]]}}}],["ff1493",{"_index":255,"title":{},"contents":{"cie-inspect.html":{"position":[[393,7]]}}}],["ffefd5",{"_index":244,"title":{},"contents":{"cie-inspect.html":{"position":[[228,7]]},"contrast.html":{"position":[[1199,7]]}}}],["ffff00",{"_index":251,"title":{},"contents":{"cie-inspect.html":{"position":[[340,7]]}}}],["file",{"_index":339,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[123,4]]},"index.html":{"position":[[826,5]]},"LICENSE.html":{"position":[[146,5]]}}}],["final",{"_index":105,"title":{},"contents":{"adjust.html":{"position":[[4023,5]]},"contrast.html":{"position":[[561,5]]}}}],["first",{"_index":318,"title":{},"contents":{"contrast.html":{"position":[[588,5],[706,5],[915,5],[949,6],[1072,6],[1338,5]]},"CONTRIBUTING.html":{"position":[[434,6]]},"index.html":{"position":[[1409,5]]}}}],["fit",{"_index":553,"title":{},"contents":{"LICENSE.html":{"position":[[1775,7]]}}}],["fluidli",{"_index":72,"title":{},"contents":{"adjust.html":{"position":[[1991,7]]},"CHANGELOG.html":{"position":[[676,7]]}}}],["focu",{"_index":163,"title":{},"contents":{"CHANGELOG.html":{"position":[[184,5]]}}}],["focus",{"_index":449,"title":{},"contents":{"index.html":{"position":[[2331,7]]}}}],["folder",{"_index":372,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[604,7]]}}}],["follow",{"_index":100,"title":{},"contents":{"adjust.html":{"position":[[3587,8],[3673,8]]},"cie-inspect.html":{"position":[[184,9]]},"CONTRIBUTING.html":{"position":[[912,6]]},"LICENSE.html":{"position":[[434,9]]}}}],["format",{"_index":193,"title":{"cie-formats.html":{"position":[[10,7]]}},"contents":{"cie-formats.html":{"position":[[10,7],[423,6]]},"index.html":{"position":[[128,8],[514,6],[629,7],[967,7],[2391,8],[2483,8]]}}}],["fraction",{"_index":225,"title":{},"contents":{"cie-formats.html":{"position":[[974,8],[1735,8]]},"index.html":{"position":[[1168,8]]}}}],["free",{"_index":479,"title":{},"contents":{"LICENSE.html":{"position":[[53,4]]}}}],["full",{"_index":453,"title":{},"contents":{"index.html":{"position":[[2429,4]]}}}],["fullest",{"_index":546,"title":{},"contents":{"LICENSE.html":{"position":[[1594,7]]}}}],["function",{"_index":19,"title":{},"contents":{"adjust.html":{"position":[[190,9],[1102,9],[1973,9],[3093,9],[3121,9],[4524,9]]},"CHANGELOG.html":{"position":[[235,10]]},"cie-formats.html":{"position":[[80,9],[654,9],[1318,9],[1335,9],[1478,9],[2043,9]]},"cie-inspect.html":{"position":[[104,9],[439,9],[592,9],[1048,9],[1445,9],[1843,9],[2280,9],[2409,9]]},"contrast.html":{"position":[[121,9],[196,8],[1145,9]]},"index.html":{"position":[[181,9],[1242,9]]}}}],["furnish",{"_index":498,"title":{},"contents":{"LICENSE.html":{"position":[[399,9]]}}}],["gamut",{"_index":205,"title":{},"contents":{"cie-formats.html":{"position":[[267,5],[610,6]]},"index.html":{"position":[[329,5]]}}}],["gener",{"_index":6,"title":{},"contents":{"adjust.html":{"position":[[69,8],[610,10]]},"CHANGELOG.html":{"position":[[522,8]]},"cie-formats.html":{"position":[[872,10]]},"LICENSE.html":{"position":[[758,7]]}}}],["github",{"_index":155,"title":{},"contents":{"CHANGELOG.html":{"position":[[80,7]]},"CONTRIBUTING.html":{"position":[[68,6]]},"index.html":{"position":[[837,7]]}}}],["given",{"_index":27,"title":{},"contents":{"adjust.html":{"position":[[314,5],[1175,5],[1242,5],[1410,5],[1503,5],[1590,5],[1688,5],[1735,5],[2041,5],[2112,5],[2283,5],[2416,5],[2544,5],[2655,5],[2745,5]]},"contrast.html":{"position":[[623,5],[722,5]]}}}],["grad",{"_index":171,"title":{},"contents":{"CHANGELOG.html":{"position":[[309,5]]}}}],["grant",{"_index":478,"title":{},"contents":{"LICENSE.html":{"position":[[44,8]]}}}],["great",{"_index":343,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[166,5]]}}}],["group",{"_index":518,"title":{},"contents":{"LICENSE.html":{"position":[[801,7]]}}}],["guidelin",{"_index":391,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[938,10]]}}}],["h",{"_index":52,"title":{},"contents":{"adjust.html":{"position":[[739,2],[1632,2],[1905,3],[2596,2],[3406,2],[3543,1],[3585,1],[3671,1],[3944,3],[3948,1],[3950,2],[3964,1],[3993,1],[4132,3],[4211,1],[4306,3],[4383,3]]},"index.html":{"position":[[2084,3],[2148,1],[2229,3],[2289,3]]}}}],["half",{"_index":109,"title":{},"contents":{"adjust.html":{"position":[[4243,5]]},"index.html":{"position":[[2180,5]]}}}],["happen",{"_index":355,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[306,7]]}}}],["harm",{"_index":506,"title":{},"contents":{"LICENSE.html":{"position":[[586,5],[695,5],[1128,4]]}}}],["help",{"_index":350,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[255,5]]}}}],["herebi",{"_index":477,"title":{},"contents":{"LICENSE.html":{"position":[[37,6]]}}}],["herman",{"_index":370,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[554,7]]}}}],["highest",{"_index":316,"title":{},"contents":{"contrast.html":{"position":[[480,7],[684,7],[835,7],[852,8],[1055,8],[1289,7]]},"index.html":{"position":[[1336,7]]}}}],["hipocrat",{"_index":471,"title":{"LICENSE.html":{"position":[[0,10]]}},"contents":{}}],["hippocrat",{"_index":569,"title":{},"contents":{"LICENSE.html":{"position":[[2093,11]]}}}],["holder",{"_index":558,"title":{},"contents":{"LICENSE.html":{"position":[[1872,7]]}}}],["hsl",{"_index":240,"title":{},"contents":{"cie-inspect.html":{"position":[[75,3]]}}}],["hsl(0",{"_index":327,"title":{},"contents":{"contrast.html":{"position":[[1274,6],[1320,6]]}}}],["hsl(199",{"_index":132,"title":{},"contents":{"adjust.html":{"position":[[4711,8]]}}}],["hsl(270",{"_index":121,"title":{},"contents":{"adjust.html":{"position":[[4595,8]]},"cie-formats.html":{"position":[[1396,8],[2104,8]]},"cie-inspect.html":{"position":[[314,8]]},"contrast.html":{"position":[[1370,8]]}}}],["hsl(271",{"_index":144,"title":{},"contents":{"adjust.html":{"position":[[4847,8]]}}}],["hsl(272",{"_index":137,"title":{},"contents":{"adjust.html":{"position":[[4778,8]]}}}],["hsl(273",{"_index":126,"title":{},"contents":{"adjust.html":{"position":[[4653,8]]}}}],["hsl(328",{"_index":257,"title":{},"contents":{"cie-inspect.html":{"position":[[419,8]]}}}],["hsl(37",{"_index":248,"title":{},"contents":{"cie-inspect.html":{"position":[[255,7]]},"contrast.html":{"position":[[1226,7]]}}}],["hsl(60",{"_index":253,"title":{},"contents":{"cie-inspect.html":{"position":[[365,7]]}}}],["hsl/hwb",{"_index":260,"title":{},"contents":{"cie-inspect.html":{"position":[[498,7],[2327,7]]}}}],["hsla(270",{"_index":232,"title":{},"contents":{"cie-formats.html":{"position":[[1453,9],[2161,9]]}}}],["https://ethicalsource.dev",{"_index":571,"title":{},"contents":{"LICENSE.html":{"position":[[2142,27]]}}}],["https://www.un.org/en/univers",{"_index":524,"title":{},"contents":{"LICENSE.html":{"position":[[882,32]]}}}],["hue",{"_index":48,"title":{},"contents":{"adjust.html":{"position":[[668,5],[691,3],[1556,5],[1583,3],[1821,4],[1854,5],[1937,4],[2506,5],[2537,3],[2568,3],[4679,3]]},"CHANGELOG.html":{"position":[[257,3],[457,5],[810,3]]},"cie-formats.html":{"position":[[788,3],[890,3]]},"cie-inspect.html":{"position":[[2290,5],[2304,3],[2335,4],[2506,5],[2546,4],[2702,4]]},"index.html":{"position":[[1817,3],[1849,5]]}}}],["human",{"_index":523,"title":{},"contents":{"LICENSE.html":{"position":[[869,5],[927,5]]}}}],["idea",{"_index":332,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[22,6]]}}}],["illeg",{"_index":533,"title":{},"contents":{"LICENSE.html":{"position":[[1239,7],[1450,7]]}}}],["impact",{"_index":574,"title":{},"contents":{"LICENSE.html":{"position":[[2221,6]]}}}],["impli",{"_index":551,"title":{},"contents":{"LICENSE.html":{"position":[[1702,8]]}}}],["import",{"_index":304,"title":{},"contents":{"contrast.html":{"position":[[34,9]]},"index.html":{"position":[[911,6]]}}}],["includ",{"_index":396,"title":{},"contents":{"index.html":{"position":[[98,7],[2366,8]]},"LICENSE.html":{"position":[[215,9],[519,8],[1711,9]]}}}],["individu",{"_index":21,"title":{},"contents":{"adjust.html":{"position":[[210,10],[1128,10]]},"LICENSE.html":{"position":[[786,11]]}}}],["initi",{"_index":33,"title":{},"contents":{"adjust.html":{"position":[[402,7],[1330,7],[2200,7],[3791,7]]},"index.html":{"position":[[2305,7]]}}}],["inspect",{"_index":175,"title":{"cie-inspect.html":{"position":[[0,10]]}},"contents":{"CHANGELOG.html":{"position":[[376,7]]},"cie-inspect.html":{"position":[[0,10],[53,10],[172,7],[656,7],[1116,7],[1513,7],[1916,7],[2473,7]]},"index.html":{"position":[[1497,10],[1515,7],[1556,9]]}}}],["instal",{"_index":365,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[486,7]]},"index.html":{"position":[[848,7],[877,7]]}}}],["interpret",{"_index":444,"title":{},"contents":{"index.html":{"position":[[1976,14]]}}}],["involv",{"_index":204,"title":{},"contents":{"cie-formats.html":{"position":[[258,8]]}}}],["issu",{"_index":333,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[29,7],[75,6],[428,5]]}}}],["it’",{"_index":360,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[401,4]]}}}],["js",{"_index":414,"title":{},"contents":{"index.html":{"position":[[772,2]]}}}],["jump",{"_index":353,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[282,4],[351,4]]}}}],["jurisdict",{"_index":537,"title":{},"contents":{"LICENSE.html":{"position":[[1288,13]]}}}],["keyword",{"_index":28,"title":{},"contents":{"adjust.html":{"position":[[323,8],[536,7],[649,7],[742,7],[1251,8],[1444,7],[1537,7],[1635,7],[2121,8],[2354,7],[2487,7],[2599,7]]}}}],["kind",{"_index":549,"title":{},"contents":{"LICENSE.html":{"position":[[1685,5]]}}}],["knowingli",{"_index":510,"title":{},"contents":{"LICENSE.html":{"position":[[675,9]]}}}],["l",{"_index":43,"title":{},"contents":{"adjust.html":{"position":[[533,2],[1441,2],[2351,2],[3010,3],[3397,2],[3535,1],[3577,1],[3663,1],[3825,3],[3829,1],[3831,2],[3845,1],[3874,1],[4125,2],[4205,2],[4296,1]]},"index.html":{"position":[[2077,2],[2142,2],[2219,1]]}}}],["lab",{"_index":22,"title":{"cie-formats.html":{"position":[[0,3]]}},"contents":{"adjust.html":{"position":[[221,3],[787,3],[846,3],[902,3],[1139,3],[1679,3],[1726,3],[1774,3],[2005,3],[2646,3],[2736,3],[2823,3]]},"CHANGELOG.html":{"position":[[566,3]]},"cie-formats.html":{"position":[[0,3],[18,3],[1345,5],[1488,5],[1516,5],[1541,5],[1789,4],[1813,4],[1871,3],[1930,4],[1937,4],[1957,3],[2003,5],[2074,3],[2123,3]]},"cie-inspect.html":{"position":[[129,3],[1145,3],[1542,3]]},"index.html":{"position":[[957,3],[987,3],[1529,3],[1731,3],[2676,7],[2786,7]]}}}],["lab($lab",{"_index":173,"title":{},"contents":{"CHANGELOG.html":{"position":[[328,9]]}}}],["lab/lch",{"_index":259,"title":{},"contents":{"cie-inspect.html":{"position":[[461,7],[685,7],[2296,7]]}}}],["law",{"_index":547,"title":{},"contents":{"LICENSE.html":{"position":[[1622,4]]}}}],["lch",{"_index":4,"title":{"cie-formats.html":{"position":[[6,3]]}},"contents":{"adjust.html":{"position":[[41,3],[228,3],[908,3],[1146,3],[1780,3],[2012,3],[2829,3],[3175,3],[4534,5]]},"CHANGELOG.html":{"position":[[251,5],[560,3],[760,3]]},"cie-formats.html":{"position":[[6,3],[26,3],[664,5],[692,5],[726,5],[1065,4],[1089,4],[1144,3],[1206,4],[1213,4],[1233,3],[1279,5],[1366,3],[1415,3],[2053,5]]},"cie-inspect.html":{"position":[[121,3],[1945,3],[2502,3]]},"index.html":{"position":[[642,3],[686,3],[963,3],[981,3],[1523,3],[1725,3],[2650,7],[2757,7]]}}}],["lch($lch",{"_index":186,"title":{},"contents":{"CHANGELOG.html":{"position":[[908,9]]}}}],["lch/lab",{"_index":176,"title":{},"contents":{"CHANGELOG.html":{"position":[[384,7]]}}}],["lea",{"_index":411,"title":{},"contents":{"index.html":{"position":[[706,3]]}}}],["legibil",{"_index":306,"title":{},"contents":{"contrast.html":{"position":[[55,11]]}}}],["letter",{"_index":93,"title":{},"contents":{"adjust.html":{"position":[[3377,6]]}}}],["level",{"_index":16,"title":{},"contents":{"adjust.html":{"position":[[171,5]]},"CHANGELOG.html":{"position":[[859,5]]},"contrast.html":{"position":[[160,5]]},"index.html":{"position":[[80,5],[90,5],[1217,5],[1998,5],[2358,5]]}}}],["liabil",{"_index":562,"title":{},"contents":{"LICENSE.html":{"position":[[1922,10]]}}}],["liabl",{"_index":559,"title":{},"contents":{"LICENSE.html":{"position":[[1883,6]]}}}],["licens",{"_index":473,"title":{"LICENSE.html":{"position":[[15,7]]}},"contents":{"LICENSE.html":{"position":[[1199,7],[1329,8],[2105,7],[2134,7],[2191,8]]}}}],["license",{"_index":527,"title":{},"contents":{"LICENSE.html":{"position":[[1013,8]]}}}],["light",{"_index":36,"title":{},"contents":{"adjust.html":{"position":[[436,11],[470,9],[1364,11],[1397,9],[2234,11],[2270,9],[2914,10],[2953,11],[3042,10],[4737,9],[4806,9]]},"CHANGELOG.html":{"position":[[420,11],[787,10]]},"cie-formats.html":{"position":[[765,10],[808,9],[1580,10],[1615,9]]},"cie-inspect.html":{"position":[[449,11],[469,9],[506,10],[693,11],[739,10],[925,10]]},"index.html":{"position":[[1870,9],[1912,11]]}}}],["lighter",{"_index":441,"title":{},"contents":{"index.html":{"position":[[1884,7]]}}}],["lilley",{"_index":416,"title":{},"contents":{"index.html":{"position":[[784,6]]}}}],["limit",{"_index":489,"title":{},"contents":{"LICENSE.html":{"position":[[233,10],[1729,7],[2211,5]]}}}],["linear",{"_index":107,"title":{},"contents":{"adjust.html":{"position":[[4139,6]]},"index.html":{"position":[[2091,6]]}}}],["list",{"_index":180,"title":{},"contents":{"CHANGELOG.html":{"position":[[512,4]]},"cie-formats.html":{"position":[[732,6],[757,4],[1547,6],[1572,4]]},"contrast.html":{"position":[[257,4]]},"index.html":{"position":[[2434,4]]}}}],["mainli",{"_index":383,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[831,7]]}}}],["maintain",{"_index":210,"title":{},"contents":{"cie-formats.html":{"position":[[376,11]]}}}],["major",{"_index":359,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[370,5],[660,5]]}}}],["make",{"_index":354,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[294,4]]}}}],["mani",{"_index":399,"title":{},"contents":{"index.html":{"position":[[222,4]]}}}],["maroon",{"_index":324,"title":{},"contents":{"contrast.html":{"position":[[903,8],[998,7],[1064,7]]},"index.html":{"position":[[1376,7],[1465,7]]}}}],["match",{"_index":218,"title":{},"contents":{"cie-formats.html":{"position":[[562,5]]},"cie-inspect.html":{"position":[[540,5],[2363,5]]},"CONTRIBUTING.html":{"position":[[617,8]]}}}],["math",{"_index":200,"title":{},"contents":{"cie-formats.html":{"position":[[191,4],[324,4]]},"index.html":{"position":[[394,4],[744,5]]}}}],["meet",{"_index":322,"title":{},"contents":{"contrast.html":{"position":[[715,4]]}}}],["mental",{"_index":515,"title":{},"contents":{"LICENSE.html":{"position":[[737,7]]}}}],["merchant",{"_index":552,"title":{},"contents":{"LICENSE.html":{"position":[[1758,16]]}}}],["merg",{"_index":491,"title":{},"contents":{"LICENSE.html":{"position":[[277,6]]}}}],["mimic",{"_index":87,"title":{},"contents":{"adjust.html":{"position":[[3267,5]]}}}],["mit",{"_index":472,"title":{"LICENSE.html":{"position":[[11,3]]}},"contents":{"LICENSE.html":{"position":[[2187,3]]}}}],["modifi",{"_index":490,"title":{},"contents":{"LICENSE.html":{"position":[[269,7]]}}}],["modul",{"_index":308,"title":{},"contents":{"contrast.html":{"position":[[152,7]]},"index.html":{"position":[[73,6]]}}}],["more",{"_index":314,"title":{},"contents":{"contrast.html":{"position":[[452,4]]}}}],["mostli",{"_index":448,"title":{},"contents":{"index.html":{"position":[[2324,6]]}}}],["move",{"_index":152,"title":{},"contents":{"CHANGELOG.html":{"position":[[46,5]]}}}],["multipli",{"_index":99,"title":{},"contents":{"adjust.html":{"position":[[3556,8],[4313,8],[4340,9],[4457,9],[4797,8]]},"index.html":{"position":[[2236,8]]}}}],["name",{"_index":94,"title":{},"contents":{"adjust.html":{"position":[[3392,4]]}}}],["nation",{"_index":520,"title":{},"contents":{"LICENSE.html":{"position":[[836,7]]}}}],["new",{"_index":167,"title":{},"contents":{"CHANGELOG.html":{"position":[[246,4],[323,4],[371,4],[463,4],[517,4],[531,3],[723,4],[903,4]]},"CONTRIBUTING.html":{"position":[[387,3]]},"index.html":{"position":[[114,3],[137,3],[615,3],[2387,3],[2478,4]]}}}],["noninfring",{"_index":555,"title":{},"contents":{"LICENSE.html":{"position":[[1812,16]]}}}],["note",{"_index":400,"title":{},"contents":{"index.html":{"position":[[278,4]]}}}],["notic",{"_index":502,"title":{},"contents":{"LICENSE.html":{"position":[[476,6],[503,6]]}}}],["now",{"_index":162,"title":{},"contents":{"CHANGELOG.html":{"position":[[179,4],[965,3]]}}}],["npm",{"_index":156,"title":{},"contents":{"CHANGELOG.html":{"position":[[110,4]]},"index.html":{"position":[[860,3],[873,3]]}}}],["null",{"_index":37,"title":{},"contents":{"adjust.html":{"position":[[448,4],[564,4],[674,4],[765,4],[824,4],[1376,4],[1472,4],[1562,4],[1658,4],[1705,4],[2246,4],[2382,4],[2512,4],[2622,4],[2712,4]]}}}],["number",{"_index":46,"title":{},"contents":{"adjust.html":{"position":[[569,8],[603,6],[770,8],[808,6],[829,8],[867,6],[1381,8],[1477,8],[1567,8],[1596,6],[1663,8],[1710,8],[3475,6],[3523,6],[3836,6],[3847,7],[3896,6],[3907,7],[3955,6],[3966,7]]},"cie-formats.html":{"position":[[865,6],[929,8],[1666,7],[1690,8]]},"cie-inspect.html":{"position":[[672,8],[1132,8],[1529,8],[1932,8],[2489,8]]}}}],["obtain",{"_index":482,"title":{},"contents":{"LICENSE.html":{"position":[[83,9]]}}}],["oddbird",{"_index":392,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[953,7]]},"LICENSE.html":{"position":[[15,7]]}}}],["oddbird/blend",{"_index":154,"title":{"index.html":{"position":[[0,14]]}},"contents":{"CHANGELOG.html":{"position":[[63,13],[92,14]]},"index.html":{"position":[[885,14]]}}}],["on",{"_index":7,"title":{},"contents":{"adjust.html":{"position":[[78,3]]},"CHANGELOG.html":{"position":[[692,3]]},"index.html":{"position":[[510,3]]}}}],["onc",{"_index":57,"title":{},"contents":{"adjust.html":{"position":[[924,4],[1796,4],[2845,4]]},"cie-formats.html":{"position":[[341,5]]}}}],["opac",{"_index":223,"title":{},"contents":{"cie-formats.html":{"position":[[944,8],[1136,7],[1705,8],[1863,7]]}}}],["open",{"_index":576,"title":{},"contents":{"LICENSE.html":{"position":[[2252,4]]}}}],["option",{"_index":161,"title":{},"contents":{"CHANGELOG.html":{"position":[[167,7]]},"contrast.html":{"position":[[340,12],[426,10],[518,10],[600,6],[668,6],[921,6]]}}}],["order",{"_index":30,"title":{},"contents":{"adjust.html":{"position":[[355,6],[1283,6],[2153,6]]},"CHANGELOG.html":{"position":[[767,5]]}}}],["origin",{"_index":208,"title":{},"contents":{"cie-formats.html":{"position":[[355,8],[486,9]]},"index.html":{"position":[[750,10]]}}}],["orr",{"_index":321,"title":{},"contents":{"contrast.html":{"position":[[702,3]]}}}],["other",{"_index":526,"title":{},"contents":{"LICENSE.html":{"position":[[1001,7],[1066,6]]}}}],["otherwis",{"_index":512,"title":{},"contents":{"LICENSE.html":{"position":[[704,9],[1975,10]]}}}],["out",{"_index":409,"title":{},"contents":{"index.html":{"position":[[668,3]]},"LICENSE.html":{"position":[[2000,3]]}}}],["output",{"_index":160,"title":{},"contents":{"CHANGELOG.html":{"position":[[160,6]]},"cie-inspect.html":{"position":[[550,6],[2373,6]]},"index.html":{"position":[[2725,8]]}}}],["outsid",{"_index":220,"title":{},"contents":{"cie-formats.html":{"position":[[593,7]]}}}],["over",{"_index":158,"title":{},"contents":{"CHANGELOG.html":{"position":[[132,4]]}}}],["p3",{"_index":459,"title":{},"contents":{"index.html":{"position":[[2541,2],[2711,5],[2824,5]]}}}],["packag",{"_index":421,"title":{},"contents":{"index.html":{"position":[[864,8]]}}}],["papayawhip",{"_index":243,"title":{},"contents":{"cie-inspect.html":{"position":[[217,10],[752,11],[938,11],[1192,11],[1338,11],[1589,11],[1735,11],[2002,11],[2173,11],[2553,11],[2709,11]]},"contrast.html":{"position":[[1188,10]]}}}],["paramet",{"_index":31,"title":{},"contents":{"adjust.html":{"position":[[362,10],[1290,10],[2160,10],[3751,10]]},"cie-formats.html":{"position":[[706,10],[1530,10]]},"cie-inspect.html":{"position":[[602,10],[1062,10],[1459,10],[1862,10],[2419,10]]},"contrast.html":{"position":[[273,10]]}}}],["particular",{"_index":407,"title":{},"contents":{"index.html":{"position":[[649,12]]},"LICENSE.html":{"position":[[1789,10]]}}}],["pass",{"_index":319,"title":{},"contents":{"contrast.html":{"position":[[612,6]]}}}],["path",{"_index":424,"title":{},"contents":{"index.html":{"position":[[938,6]]}}}],["percentag",{"_index":38,"title":{},"contents":{"adjust.html":{"position":[[453,12],[485,10],[2047,11],[2251,12],[2289,10],[2387,12],[2422,10],[2517,12],[2550,10],[2627,12],[2661,10],[2717,12],[2751,10],[3601,10]]},"cie-formats.html":{"position":[[823,10],[994,10],[1630,10],[1755,10]]}}}],["perceptu",{"_index":194,"title":{},"contents":{"cie-formats.html":{"position":[[40,12]]}}}],["permiss",{"_index":476,"title":{},"contents":{"LICENSE.html":{"position":[[23,10],[492,10]]}}}],["permit",{"_index":497,"title":{},"contents":{"LICENSE.html":{"position":[[360,6],[1609,9]]}}}],["person",{"_index":481,"title":{},"contents":{"LICENSE.html":{"position":[[76,6],[367,7]]}}}],["physic",{"_index":514,"title":{},"contents":{"LICENSE.html":{"position":[[727,9]]}}}],["picker",{"_index":405,"title":{},"contents":{"index.html":{"position":[[588,6],[696,6]]}}}],["place",{"_index":337,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[95,5],[172,5]]}}}],["plan",{"_index":454,"title":{},"contents":{"index.html":{"position":[[2442,7]]}}}],["pleas",{"_index":389,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[905,6]]}}}],["portion",{"_index":505,"title":{},"contents":{"LICENSE.html":{"position":[[557,8],[1170,7],[1365,7],[1516,7]]}}}],["posit",{"_index":29,"title":{},"contents":{"adjust.html":{"position":[[344,10],[594,8],[1272,10],[2142,10]]},"cie-formats.html":{"position":[[856,8]]}}}],["possibl",{"_index":345,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[189,8]]}}}],["pr",{"_index":348,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[227,3]]}}}],["practic",{"_index":164,"title":{},"contents":{"CHANGELOG.html":{"position":[[193,9]]}}}],["pre",{"_index":191,"title":{},"contents":{"CHANGELOG.html":{"position":[[1007,3]]},"cie-formats.html":{"position":[[304,3]]},"index.html":{"position":[[425,3]]}}}],["preview",{"_index":115,"title":{},"contents":{"adjust.html":{"position":[[4546,8]]},"cie-formats.html":{"position":[[1357,8],[2065,8]]},"cie-inspect.html":{"position":[[208,8]]},"contrast.html":{"position":[[1179,8]]}}}],["primari",{"_index":2,"title":{},"contents":{"adjust.html":{"position":[[20,7]]},"CONTRIBUTING.html":{"position":[[571,7]]}}}],["privat",{"_index":81,"title":{},"contents":{"adjust.html":{"position":[[3111,9]]},"contrast.html":{"position":[[1163,9]]}}}],["process",{"_index":361,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[441,7]]},"index.html":{"position":[[429,10]]}}}],["processor",{"_index":207,"title":{},"contents":{"cie-formats.html":{"position":[[308,10]]}}}],["project",{"_index":153,"title":{},"contents":{"CHANGELOG.html":{"position":[[52,7]]},"index.html":{"position":[[5,7]]}}}],["proper",{"_index":303,"title":{},"contents":{"contrast.html":{"position":[[15,6]]}}}],["propos",{"_index":86,"title":{},"contents":{"adjust.html":{"position":[[3205,8],[3338,9]]},"index.html":{"position":[[1208,8]]}}}],["provid",{"_index":82,"title":{},"contents":{"adjust.html":{"position":[[3146,7]]},"cie-formats.html":{"position":[[30,7]]},"contrast.html":{"position":[[437,7],[529,7]]},"index.html":{"position":[[197,8]]},"LICENSE.html":{"position":[[980,7],[1643,8]]}}}],["provis",{"_index":531,"title":{},"contents":{"LICENSE.html":{"position":[[1181,9],[1376,9],[1528,9]]}}}],["publish",{"_index":492,"title":{},"contents":{"LICENSE.html":{"position":[[284,8]]}}}],["pull",{"_index":334,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[41,4],[231,4]]}}}],["purpos",{"_index":554,"title":{},"contents":{"LICENSE.html":{"position":[[1800,7]]}}}],["question",{"_index":342,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[149,9]]}}}],["rad",{"_index":170,"title":{},"contents":{"CHANGELOG.html":{"position":[[304,4]]}}}],["rang",{"_index":102,"title":{},"contents":{"adjust.html":{"position":[[3657,5]]},"CHANGELOG.html":{"position":[[717,5]]}}}],["ratio",{"_index":317,"title":{},"contents":{"contrast.html":{"position":[[548,5],[728,5]]}}}],["re",{"_index":382,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[802,2]]}}}],["rebeccapurpl",{"_index":116,"title":{},"contents":{"adjust.html":{"position":[[4555,13]]},"cie-formats.html":{"position":[[1075,13],[1218,14],[1799,13],[1942,14]]},"cie-inspect.html":{"position":[[274,13],[793,14],[965,14],[1225,14],[1364,14],[1622,14],[1762,14],[2040,14],[2200,14],[2588,14],[2739,14]]},"contrast.html":{"position":[[888,14],[983,14],[1079,14]]},"index.html":{"position":[[1384,14],[1473,14]]}}}],["recommend",{"_index":201,"title":{},"contents":{"cie-formats.html":{"position":[[196,11]]},"index.html":{"position":[[399,11]]}}}],["reduct",{"_index":214,"title":{},"contents":{"cie-formats.html":{"position":[[510,9]]}}}],["rel",{"_index":0,"title":{"adjust.html":{"position":[[0,8]]}},"contents":{"adjust.html":{"position":[[0,8],[3218,8],[3635,8],[4222,8]]},"CHANGELOG.html":{"position":[[551,8],[867,8]]},"cie-formats.html":{"position":[[533,8]]},"index.html":{"position":[[1671,8],[1687,8],[1935,8],[2006,8],[2159,8]]}}}],["relat",{"_index":14,"title":{},"contents":{"adjust.html":{"position":[[152,7],[4478,7]]},"cie-formats.html":{"position":[[617,7],[1267,7],[1991,7]]},"contrast.html":{"position":[[84,7],[1096,7]]}}}],["releas",{"_index":192,"title":{},"contents":{"CHANGELOG.html":{"position":[[1011,8]]}}}],["remaind",{"_index":538,"title":{},"contents":{"LICENSE.html":{"position":[[1311,9]]}}}],["remov",{"_index":157,"title":{},"contents":{"CHANGELOG.html":{"position":[[125,6],[969,7]]}}}],["replac",{"_index":98,"title":{},"contents":{"adjust.html":{"position":[[3487,7]]},"CHANGELOG.html":{"position":[[592,7]]}}}],["repo",{"_index":363,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[459,5]]}}}],["repres",{"_index":95,"title":{},"contents":{"adjust.html":{"position":[[3409,10]]}}}],["request",{"_index":335,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[46,8],[104,7],[236,8]]}}}],["requir",{"_index":80,"title":{},"contents":{"adjust.html":{"position":[[3084,8],[4515,8]]},"cie-formats.html":{"position":[[2034,8]]},"contrast.html":{"position":[[1136,8]]},"index.html":{"position":[[320,8]]},"LICENSE.html":{"position":[[1052,7]]}}}],["restrict",{"_index":488,"title":{},"contents":{"LICENSE.html":{"position":[[202,12]]}}}],["result",{"_index":13,"title":{},"contents":{"adjust.html":{"position":[[143,8]]},"index.html":{"position":[[444,6],[552,6]]}}}],["return",{"_index":25,"title":{},"contents":{"adjust.html":{"position":[[265,6],[375,6],[1193,6],[1303,6],[2063,6],[2173,6],[3764,6],[4003,7]]},"CHANGELOG.html":{"position":[[342,7],[922,7]]},"cie-formats.html":{"position":[[719,6],[1015,7]]},"cie-inspect.html":{"position":[[114,6],[615,6],[664,7],[1075,6],[1124,7],[1472,6],[1521,7],[1875,6],[1924,7],[2432,6],[2481,7]]},"contrast.html":{"position":[[286,6],[368,7],[577,6],[648,7]]}}}],["rgb",{"_index":239,"title":{},"contents":{"cie-inspect.html":{"position":[[68,3]]}}}],["rgb(0",{"_index":129,"title":{},"contents":{"adjust.html":{"position":[[4695,6]]},"contrast.html":{"position":[[1261,6]]}}}],["rgb(102",{"_index":118,"title":{},"contents":{"adjust.html":{"position":[[4577,8]]},"cie-formats.html":{"position":[[1378,8],[2086,8]]},"cie-inspect.html":{"position":[[296,8]]},"contrast.html":{"position":[[1352,8]]}}}],["rgb(128",{"_index":329,"title":{},"contents":{"contrast.html":{"position":[[1305,8]]}}}],["rgb(191",{"_index":141,"title":{},"contents":{"adjust.html":{"position":[[4828,8]]}}}],["rgb(195",{"_index":134,"title":{},"contents":{"adjust.html":{"position":[[4759,8]]}}}],["rgb(255",{"_index":245,"title":{},"contents":{"cie-inspect.html":{"position":[[236,8],[348,8],[401,8]]},"contrast.html":{"position":[[1207,8]]}}}],["rgb(87",{"_index":123,"title":{},"contents":{"adjust.html":{"position":[[4636,7]]}}}],["rgba(102",{"_index":230,"title":{},"contents":{"cie-formats.html":{"position":[[1240,9],[1429,9],[1964,9],[2137,9]]}}}],["right",{"_index":358,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[356,5]]},"LICENSE.html":{"position":[[248,6],[875,6],[933,9]]}}}],["rough",{"_index":443,"title":{},"contents":{"index.html":{"position":[[1970,5]]}}}],["roughli",{"_index":183,"title":{},"contents":{"CHANGELOG.html":{"position":[[831,7]]}}}],["round",{"_index":206,"title":{},"contents":{"cie-formats.html":{"position":[[289,9]]},"index.html":{"position":[[351,9]]}}}],["run",{"_index":378,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[729,3],[883,3]]}}}],["same",{"_index":199,"title":{},"contents":{"cie-formats.html":{"position":[[186,4]]},"cie-inspect.html":{"position":[[490,4],[2319,4]]},"index.html":{"position":[[378,4],[728,4]]}}}],["sass",{"_index":34,"title":{},"contents":{"adjust.html":{"position":[[410,4],[1338,4],[2208,4],[3247,4],[3799,4]]},"CHANGELOG.html":{"position":[[203,4],[360,4],[404,4],[746,4],[940,4]]},"cie-formats.html":{"position":[[152,4],[411,4],[677,4],[1501,4]]},"cie-inspect.html":{"position":[[29,4],[560,4],[642,4],[1102,4],[1499,4],[1902,4],[2383,4],[2459,4]]},"CONTRIBUTING.html":{"position":[[529,5],[598,5],[792,4],[923,4]]},"index.html":{"position":[[57,5],[265,4],[928,4],[1020,4],[1041,5],[1543,4],[1696,4],[2624,5]]}}}],["sassdoc",{"_index":369,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[541,8]]}}}],["save",{"_index":422,"title":{},"contents":{"index.html":{"position":[[902,4]]}}}],["scale",{"_index":71,"title":{},"contents":{"adjust.html":{"position":[[1983,7],[1999,5],[2264,5],[2400,5],[2640,5],[2730,5],[2812,5],[2857,6],[3617,5],[4231,6],[4263,6],[4441,6],[4731,5]]},"CHANGELOG.html":{"position":[[659,7],[670,5]]},"index.html":{"position":[[1864,5],[2168,6]]}}}],["scss",{"_index":59,"title":{},"contents":{"adjust.html":{"position":[[937,4],[1809,4],[2902,4],[4061,4]]},"cie-formats.html":{"position":[[1060,4],[1784,4]]},"cie-inspect.html":{"position":[[734,4],[1182,4],[1579,4],[1987,4],[2541,4]]},"contrast.html":{"position":[[742,4]]}}}],["see",{"_index":452,"title":{},"contents":{"index.html":{"position":[[2421,3]]}}}],["select",{"_index":178,"title":{},"contents":{"CHANGELOG.html":{"position":[[479,7]]},"contrast.html":{"position":[[225,6]]}}}],["sell",{"_index":496,"title":{},"contents":{"LICENSE.html":{"position":[[324,4]]}}}],["separ",{"_index":221,"title":{},"contents":{"cie-formats.html":{"position":[[747,9],[1562,9]]}}}],["servic",{"_index":525,"title":{},"contents":{"LICENSE.html":{"position":[[943,9],[990,7],[1088,7]]}}}],["set",{"_index":20,"title":{},"contents":{"adjust.html":{"position":[[200,5],[206,3],[466,3],[578,3],[687,3],[779,3],[838,3],[893,3],[942,4],[1056,4],[1814,4],[1930,4],[2907,4],[3035,4],[4077,3],[4094,4],[4410,4],[4614,3]]},"CHANGELOG.html":{"position":[[149,8],[583,5]]},"index.html":{"position":[[1758,3],[2041,3]]}}}],["sever",{"_index":397,"title":{},"contents":{"index.html":{"position":[[106,7]]}}}],["shall",{"_index":503,"title":{},"contents":{"LICENSE.html":{"position":[[510,5],[1022,6],[1207,5],[1476,5],[1556,5],[1841,5]]}}}],["shorthand",{"_index":44,"title":{},"contents":{"adjust.html":{"position":[[544,10],[657,10],[750,10],[996,10],[1080,10],[1452,10],[1545,10],[1643,10],[1866,10],[1951,10],[2362,10],[2495,10],[2607,10],[2971,10],[3062,10],[3311,9]]},"index.html":{"position":[[1950,10]]}}}],["similar",{"_index":236,"title":{},"contents":{"cie-inspect.html":{"position":[[18,7]]}}}],["singl",{"_index":92,"title":{},"contents":{"adjust.html":{"position":[[3370,6],[3468,6]]}}}],["site",{"_index":381,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[782,4]]}}}],["slight",{"_index":401,"title":{},"contents":{"index.html":{"position":[[454,6],[562,6]]}}}],["slightli",{"_index":212,"title":{},"contents":{"cie-formats.html":{"position":[[458,8]]}}}],["softwar",{"_index":484,"title":{},"contents":{"LICENSE.html":{"position":[[108,8],[157,12],[185,8],[343,9],[387,8],[573,9],[596,8],[960,8],[1631,8],[2033,8],[2078,9],[2264,9]]}}}],["sort",{"_index":203,"title":{},"contents":{"cie-formats.html":{"position":[[227,4]]}}}],["sourc",{"_index":394,"title":{},"contents":{"index.html":{"position":[[18,6]]},"LICENSE.html":{"position":[[2127,6],[2257,6]]}}}],["space",{"_index":196,"title":{},"contents":{"cie-formats.html":{"position":[[67,6],[241,5],[741,5],[1556,5]]},"index.html":{"position":[[41,6],[313,6]]}}}],["specif",{"_index":23,"title":{},"contents":{"adjust.html":{"position":[[244,8],[4490,13]]},"cie-formats.html":{"position":[[629,13],[1285,13],[2009,13]]},"contrast.html":{"position":[[96,13]]}}}],["specifici",{"_index":197,"title":{},"contents":{"cie-formats.html":{"position":[[111,15]]}}}],["srgb",{"_index":174,"title":{},"contents":{"CHANGELOG.html":{"position":[[353,6],[933,6]]},"cie-formats.html":{"position":[[157,5],[416,6],[605,4],[1041,4]]},"index.html":{"position":[[1013,6]]}}}],["start",{"_index":406,"title":{},"contents":{"index.html":{"position":[[602,7]]}}}],["step",{"_index":403,"title":{},"contents":{"index.html":{"position":[[480,5]]}}}],["subject",{"_index":499,"title":{},"contents":{"LICENSE.html":{"position":[[419,7]]}}}],["sublicens",{"_index":494,"title":{},"contents":{"LICENSE.html":{"position":[[305,11]]}}}],["submit",{"_index":347,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[218,6]]}}}],["substanti",{"_index":504,"title":{},"contents":{"LICENSE.html":{"position":[[545,11]]}}}],["subtract",{"_index":104,"title":{},"contents":{"adjust.html":{"position":[[3707,8]]},"CHANGELOG.html":{"position":[[635,8]]}}}],["such",{"_index":540,"title":{},"contents":{"LICENSE.html":{"position":[[1360,4]]}}}],["syntax",{"_index":84,"title":{},"contents":{"adjust.html":{"position":[[3164,6],[3233,7],[3277,6]]},"CHANGELOG.html":{"position":[[824,6],[876,6]]},"cie-formats.html":{"position":[[698,7],[1522,7]]},"index.html":{"position":[[158,7],[2021,7]]}}}],["system",{"_index":508,"title":{},"contents":{"LICENSE.html":{"position":[[635,7]]}}}],["tab",{"_index":417,"title":{},"contents":{"index.html":{"position":[[795,3]]}}}],["test",{"_index":373,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[626,5],[639,5],[719,4],[737,5]]}}}],["tests/doc",{"_index":377,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[702,11]]}}}],["that’",{"_index":190,"title":{},"contents":{"CHANGELOG.html":{"position":[[995,6]]}}}],["therebi",{"_index":543,"title":{},"contents":{"LICENSE.html":{"position":[[1498,8]]}}}],["thing",{"_index":188,"title":{},"contents":{"CHANGELOG.html":{"position":[[977,7]]},"CONTRIBUTING.html":{"position":[[299,6]]}}}],["those",{"_index":528,"title":{},"contents":{"LICENSE.html":{"position":[[1060,5],[1414,5]]}}}],["threaten",{"_index":513,"title":{},"contents":{"LICENSE.html":{"position":[[714,8]]}}}],["three",{"_index":387,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[891,5]]}}}],["threshold",{"_index":320,"title":{},"contents":{"contrast.html":{"position":[[638,9]]}}}],["to>/blend",{"_index":425,"title":{},"contents":{"index.html":{"position":[[945,11]]}}}],["todo",{"_index":446,"title":{},"contents":{"index.html":{"position":[[2296,4]]}}}],["tool",{"_index":238,"title":{},"contents":{"cie-inspect.html":{"position":[[43,5]]}}}],["tort",{"_index":566,"title":{},"contents":{"LICENSE.html":{"position":[[1967,4]]}}}],["toward",{"_index":74,"title":{},"contents":{"adjust.html":{"position":[[2316,7],[2449,7],[2688,7],[2778,7]]},"CHANGELOG.html":{"position":[[684,7]]}}}],["true",{"_index":368,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[535,5]]}}}],["turn",{"_index":169,"title":{},"contents":{"CHANGELOG.html":{"position":[[298,5]]}}}],["two",{"_index":313,"title":{},"contents":{"contrast.html":{"position":[[445,3]]}}}],["unenforc",{"_index":534,"title":{},"contents":{"LICENSE.html":{"position":[[1250,13],[1461,14]]}}}],["uneth",{"_index":575,"title":{},"contents":{"LICENSE.html":{"position":[[2235,9]]}}}],["uniform",{"_index":195,"title":{},"contents":{"cie-formats.html":{"position":[[53,7]]}}}],["unit",{"_index":77,"title":{},"contents":{"adjust.html":{"position":[[2888,5],[3545,5]]},"CHANGELOG.html":{"position":[[287,4]]},"LICENSE.html":{"position":[[829,6]]}}}],["unitless",{"_index":224,"title":{},"contents":{"cie-formats.html":{"position":[[965,8],[1726,8]]}}}],["univers",{"_index":521,"title":{},"contents":{"LICENSE.html":{"position":[[844,9]]}}}],["up",{"_index":64,"title":{},"contents":{"adjust.html":{"position":[[1159,2],[2025,2]]}}}],["updat",{"_index":376,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[691,6]]}}}],["us",{"_index":42,"title":{},"contents":{"adjust.html":{"position":[[525,3],[638,3],[731,3],[1433,3],[1526,3],[1624,3],[2343,3],[2476,3],[2588,3],[2880,5]]},"CHANGELOG.html":{"position":[[816,5]]},"cie-formats.html":{"position":[[176,5],[499,3],[1310,4]]},"contrast.html":{"position":[[217,4]]},"CONTRIBUTING.html":{"position":[[474,3]]},"index.html":{"position":[[370,3],[720,3],[933,4],[1719,5],[2464,4]]},"LICENSE.html":{"position":[[258,4],[616,4],[972,4],[1047,4],[1080,3],[2049,3],[2245,3]]}}}],["usag",{"_index":419,"title":{},"contents":{"index.html":{"position":[[807,5]]}}}],["v0.1.1",{"_index":184,"title":{},"contents":{"CHANGELOG.html":{"position":[[883,6]]}}}],["v0.2.0",{"_index":149,"title":{},"contents":{"CHANGELOG.html":{"position":[[16,6]]}}}],["valid",{"_index":545,"title":{},"contents":{"LICENSE.html":{"position":[[1565,5]]}}}],["valu",{"_index":24,"title":{},"contents":{"adjust.html":{"position":[[253,7],[3445,5],[3515,5],[3745,5],[4334,5]]},"CHANGELOG.html":{"position":[[392,6],[610,5]]},"cie-formats.html":{"position":[[800,7],[1046,5],[1608,6]]},"cie-inspect.html":{"position":[[79,6],[141,7],[525,5],[2348,5]]},"contrast.html":{"position":[[567,6]]},"index.html":{"position":[[1533,6],[2257,5]]}}}],["variat",{"_index":402,"title":{},"contents":{"index.html":{"position":[[461,10]]}}}],["variou",{"_index":187,"title":{},"contents":{"CHANGELOG.html":{"position":[[951,7]]}}}],["verou",{"_index":412,"title":{},"contents":{"index.html":{"position":[[710,6]]}}}],["version",{"_index":447,"title":{},"contents":{"index.html":{"position":[[2313,7]]}}}],["view",{"_index":393,"title":{},"contents":{"index.html":{"position":[[0,4],[13,4]]}}}],["violat",{"_index":519,"title":{},"contents":{"LICENSE.html":{"position":[[812,9],[1112,8]]}}}],["warranti",{"_index":548,"title":{},"contents":{"LICENSE.html":{"position":[[1669,8],[1744,10]]}}}],["way",{"_index":110,"title":{},"contents":{"adjust.html":{"position":[[4249,3]]},"index.html":{"position":[[2186,3]]},"LICENSE.html":{"position":[[1103,3]]}}}],["welcom",{"_index":336,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[59,8]]}}}],["well",{"_index":517,"title":{},"contents":{"LICENSE.html":{"position":[[766,4]]}}}],["we’ll",{"_index":242,"title":{},"contents":{"cie-inspect.html":{"position":[[166,5]]}}}],["we’r",{"_index":451,"title":{},"contents":{"index.html":{"position":[[2400,5]]}}}],["we’v",{"_index":89,"title":{},"contents":{"adjust.html":{"position":[[3293,5]]}}}],["wheel",{"_index":75,"title":{},"contents":{"adjust.html":{"position":[[2572,5]]}}}],["whether",{"_index":563,"title":{},"contents":{"LICENSE.html":{"position":[[1933,7]]}}}],["white",{"_index":111,"title":{},"contents":{"adjust.html":{"position":[[4256,6]]},"contrast.html":{"position":[[361,6],[408,5],[771,5]]},"index.html":{"position":[[1285,5],[2193,6]]}}}],["will",{"_index":352,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[271,7]]}}}],["without",{"_index":487,"title":{},"contents":{"LICENSE.html":{"position":[[194,7],[225,7],[1661,7]]}}}],["wonder",{"_index":410,"title":{},"contents":{"index.html":{"position":[[676,9]]}}}],["work",{"_index":385,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[862,5]]},"index.html":{"position":[[252,7],[2406,7]]}}}],["written",{"_index":413,"title":{},"contents":{"index.html":{"position":[[761,7]]}}}],["yarn",{"_index":364,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[478,4],[562,4],[714,4],[743,4],[787,4],[868,4]]}}}],["yellow",{"_index":250,"title":{},"contents":{"cie-inspect.html":{"position":[[333,6],[840,7],[996,7],[1264,7],[1394,7],[1661,7],[1793,7],[2084,7],[2230,7],[2629,7],[2773,7]]}}}],["you’r",{"_index":351,"title":{},"contents":{"CONTRIBUTING.html":{"position":[[264,6]]}}}]],"pipeline":["stemmer"]},"store":{"adjust.html":{"filename":"adjust.html","title":"Relative Colors","contents":"Relative Colors The primary advantage of LCH color is the ability to generate one color from another by adjust channels, and expect consistent results. Related CSS Colors Level 5 [external] @function set() Set individual Lab or LCH channels to specific values, and return the adjusted color. All arguments must be given by keyword, rather than positional order. Parameters & Return $color: (color) The initial Sass color being adjusted $lightness: null (percentage) Set lightness to a percentage between 0 and 100% (Can also use the $l keyword shorthand) $chroma: null (number) Set chroma to a positive number (generally 0-100) (Can also use the $c keyword shorthand) $hue: null (angle) Set hue to an angle (0deg-360deg) (Can also use the $h keyword shorthand) $a: null (number) Set the Lab a channel to any number ±160 $b: null (number) Set the Lab b channel to any number ±160 @error Cannot set both Lab & LCH channels at once Example scss .set { chroma: blend.set(rebeccapurple, $chroma: 20); shorthand: blend.set(rebeccapurple, $c: 20); } css compiled .set { chroma: #574665; shorthand: #574665; } @function adjust() Adjust individual Lab or LCH channels up or down by a given amount, and return the adjusted color. All arguments must be given by keyword, rather than positional order. Parameters & Return $color: (color) The initial Sass color being adjusted $lightness: null (number) Adjust lightness by given amount (Can also use the $l keyword shorthand) $chroma: null (number) Adjust chroma by given amount (Can also use the $c keyword shorthand) $hue: null (number) Adjust hue by given number of degrees (Can also use the $h keyword shorthand) $a: null (number) Adjust Lab a by given amount $b: null (number) Adjust Lab b by given amount @error Cannot adjust both Lab & LCH channels at once Example scss .set { hue: blend.adjust(rebeccapurple, $hue: -60); shorthand: blend.adjust(rebeccapurple, $h: -60); } css compiled .set { hue: #005278; shorthand: #005278; } @function scale() Fluidly scale Lab or LCH channels up or down by a given percentage, and return the adjusted color. All arguments must be given by keyword, rather than positional order. Parameters & Return $color: (color) The initial Sass color being adjusted $lightness: null (percentage) Scale lightness by given percentage of the distance towards 0 or 100 (Can also use the $l keyword shorthand) $chroma: null (percentage) Scale chroma by given percentage of the distance towards 0 or 100 (Can also use the $c keyword shorthand) $hue: null (percentage) Adjust hue by given percentage of the hue wheel (Can also use the $h keyword shorthand) $a: null (percentage) Scale Lab a by given percentage of the distance towards 160 or -160 $b: null (percentage) Scale Lab b by given percentage of the distance towards 160 or -160 @error Cannot scale both Lab & LCH channels at once @error Scales must be defined using % units Example scss .set { lightness: blend.adjust(rebeccapurple, $lightness: 50%); shorthand: blend.adjust(rebeccapurple, $l: 50%); } css compiled .set { lightness: #e3c0ff; shorthand: #e3c0ff; } Requires @function error() [private] @function from() We also provide a compact syntax for LCH adjustments, based on the proposed CSS relative color syntax. Since Sass is not able to mimic the syntax exactly, we’ve developed a shorthand based on the CSS proposal. For each channel: The single-letter channel name (l | c | h) represents no change to the current value of the channel A single number will replace the current channel value A number with l | c | h units will multiply the channel l | c | h followed by a percentage will scale the channel relative to available range l | c | h followed by an amount will add or subtract that amount from the current value Parameters & Return $color: (color) The initial Sass color being adjusted $l: l (l | number | l number) Adjustments to the l channel: $c: c (c | number | c number) Adjustments to the c channel $h: h (h | number | h number) Adjustments to the h channel @return (color) The final color after adjustments Example scss .from { // set chroma to 20 set: blend.from(rebeccapurple, l, 20, h); // linear adjustments to a channel adjust: blend.from(rebeccapurple, l, c, h -60); // relative scale, e.g. \"half-way to white\" scale: blend.from(rebeccapurple, l 50%, c, h); // multiply the channel value multiply: blend.from(rebeccapurple, 2l, c, h); } css compiled .from { set: #574665; adjust: #005278; scale: #c388f8; multiply: #bf85f4; } Related CSS Specification [external] Requires @function lch() Color Previews rebeccapurple #663399 rgb(102, 51, 153) hsl(270, 50%, 40%) set chroma 20 #574665 rgb(87, 70, 101) hsl(273, 18%, 34%) adjust hue -60 #005278 rgb(0, 82, 120) hsl(199, 100%, 24%) scale lightness 50% #c388f8 rgb(195, 136, 248) hsl(272, 89%, 75%) multiply lightness * 2 #bf85f4 rgb(191, 133, 244) hsl(271, 83%, 74%)"},"CHANGELOG.html":{"filename":"CHANGELOG.html","title":"Changelog","contents":"Blend Changelog v0.2.0 - 2020.05.27 BREAKING: Moved project to oddbird/blend on GitHub, and @oddbird/blend on NPM. BREAKING: Remove over-complicated settings & output options for now. Focus on practical Sass conversion to and from CIE functions. NEW: lch() hue channel accepts any angle unit (e.g. turn, rad, grad, or deg) NEW: lab($lab, $a) returns an (sRGB) Sass color NEW: Inspect LCH/Lab values of a Sass color with lightness() a() and b() chroma() and hue() NEW: contrast() selects the best contrast from a list NEW: Generate new colors based on relative LCH & Lab adjustments: set() to replace a channel value adjust() to add or subtract from a channel scale() to scale fluidly towards one “end” of the channel range NEW: from() converts a Sass color to LCH in order to adjust CIE lightness, chroma, and hue – using a syntax roughly based on CSS Colors Level 5 relative syntax v0.1.1 - 2020.05.06 NEW: lch($lch, $a) returns an (sRGB) Sass color Various other now-removed things… ¯\\_(ツ)_/¯ that’s what pre-releases are for"},"cie-formats.html":{"filename":"cie-formats.html","title":"Lab & LCH Formats","contents":"Lab & LCH Formats Lab and LCH provide a perceptually uniform color space. These functions are based on the CSS specificiation, but eagerly converted to Sass sRGB. While we are using the same math recommended for browsers, this sort of color-space conversion involves gamut-adjustments and rounding. In a pre-processor, that math is compiled once, and the original data is not maintained. A color converted into Sass (sRGB) format and then back to CIE may be slightly different from the original. We use chroma-reduction to achieve a relative-colormetric closest match for CIE colors that fall outside the sRGB gamut. Related CSS specification [external] @function lch() Define Sass colors in lch() syntax. Parameters & Return $lch: (list) A space-separated list of lightness, chroma, and hue channel values. lightness is a percentage (0%-100%) chroma is a positive number (generally 0-100) hue is an angle (0deg-360deg) $a: 100% (number) Alpha opacity, as either a unitless fraction (0-1) or a percentage (0%-100%) @return (color) Converted sRGB value Example scss .lch { // rebeccapurple lch: blend.lch(32.39% 61.25 308.86deg); // 60% opacity lch-a: blend.lch(32.39% 61.25 308.86deg, 60%); } css compiled .lch { lch: rebeccapurple; lch-a: rgba(102, 51, 153, 0.6); } Related CSS lch() specification [external] Used By @function from() @function lab() Color Previews lch #663399 rgb(102, 51, 153) hsl(270, 50%, 40%) lch-a #663399 rgba(102, 51, 153, 0.6) hsla(270, 50%, 40%, 0.6) @function lab() Define Sass colors in lab() syntax. Parameters $lab: (list) A space-separated list of lightness, a, and b channel values lightness is a percentage (0%-100%) a & b are both numbers (±160) $a: 100% (number) Alpha opacity, as either a unitless fraction (0-1) or a percentage (0%-100%) Example scss .lab { // rebeccapurple lab: blend.lab(32.39% 38.43 -47.69); // 60% alpha opacity lab-a: blend.lab(32.39% 38.43 -47.69, 0.6); } css compiled .lab { lab: rebeccapurple; lab-a: rgba(102, 51, 153, 0.6); } Related CSS lab() specification [external] Requires @function lch() Color Previews lab #663399 rgb(102, 51, 153) hsl(270, 50%, 40%) lab-a #663399 rgba(102, 51, 153, 0.6) hsla(270, 50%, 40%, 0.6)"},"cie-inspect.html":{"filename":"cie-inspect.html","title":"Inspecting Colors","contents":"Inspecting Colors Similar to Sass built-in tools for inspecting the rgb or hsl values of a color, these functions return LCH and Lab channel values. For these demos, we’ll inspect the following colors: Color Previews papayawhip #ffefd5 rgb(255, 239, 213) hsl(37, 100%, 92%) rebeccapurple #663399 rgb(102, 51, 153) hsl(270, 50%, 40%) yellow #ffff00 rgb(255, 255, 0) hsl(60, 100%, 50%) deeppink #ff1493 rgb(255, 20, 147) hsl(328, 100%, 54%) @function lightness() Lab/LCH lightness is not the same as HSL/HWB lightness, so this value will not match the output of Sass built-in color.lightness() function. Parameters & Return $color: (color) The Sass color to inspect @return (number) The Lab/LCH “lightness” channel of the color Example scss .lightness { papayawhip: blend.lightness(papayawhip); rebeccapurple: blend.lightness(rebeccapurple); yellow: blend.lightness(yellow); deeppink: blend.lightness(deeppink); } css compiled .lightness { papayawhip: 95.228994537%; rebeccapurple: 32.3927863513%; yellow: 97.6071273304%; deeppink: 56.6052673708%; } @function a() Parameters & Return $color: (color) The Sass color to inspect @return (number) The Lab “a” channel of the color Example scss .a { papayawhip: blend.a(papayawhip); rebeccapurple: blend.a(rebeccapurple); yellow: blend.a(yellow); deeppink: blend.a(deeppink); } css compiled .a { papayawhip: 2.5389948734; rebeccapurple: 38.4284034785; yellow: -15.7528937383; deeppink: 83.4583942761; } @function b() Parameters & Return $color: (color) The Sass color to inspect @return (number) The Lab “b” channel of the color Example scss .b { papayawhip: blend.b(papayawhip); rebeccapurple: blend.b(rebeccapurple); yellow: blend.b(yellow); deeppink: blend.b(deeppink); } css compiled .b { papayawhip: 14.6759120217; rebeccapurple: -47.6901973328; yellow: 93.3884904256; deeppink: -4.1193014063; } @function chroma() Parameters & Return $color: (color) The Sass color to inspect @return (number) The LCH “chroma” channel of the color Example scss .chroma { papayawhip: blend.chroma(papayawhip); rebeccapurple: blend.chroma(rebeccapurple); yellow: blend.chroma(yellow); deeppink: blend.chroma(deeppink); } css compiled .chroma { papayawhip: 14.8939211974; rebeccapurple: 61.2462008254; yellow: 94.7077811222; deeppink: 83.5599917378; } @function hue() Lab/LCH hue is not the same as HSL/HWB hue, so this value will not match the output of Sass built-in color.hue() function. Parameters & Return $color: (color) The Sass color to inspect @return (number) The LCH “hue” channel of the color Example scss .hue { papayawhip: blend.hue(papayawhip); rebeccapurple: blend.hue(rebeccapurple); yellow: blend.hue(yellow); deeppink: blend.hue(deeppink); } css compiled .hue { papayawhip: 80.1847432252deg; rebeccapurple: 308.8616067109deg; yellow: 99.5745966976deg; deeppink: 357.1743141408deg; }"},"contrast.html":{"filename":"contrast.html","title":"Color Contrast","contents":"Color Contrast Proper contrast is important for design legibillity & accessibility. Related CSS specification [external] @function contrast() CSS Color Module, level 5, defines a color-contrast() function that can be used to select the best contrast from a list of colors. Parameters & Return $color: (color) Base color to contrast against $options...: (black, white) Returns the better contrast of black or white by default. Optionally provide two or more colors, to compare for highest contrast with the base color. Optionally provide a contrast ratio as the final value, to return the first color option that passes the given contrast threshold @return (color) The option with the highest contrast, orr first to meet a given ratio Example scss .contrast { // black or white for best contrast default: blend.contrast(papayawhip); // highest contrast highest: blend.contrast(papayawhip, rebeccapurple, maroon); // first option with contrast >= 4.5 first: blend.contrast(papayawhip, rebeccapurple, maroon, 4.5); } css compiled .contrast { default: black; highest: maroon; first: rebeccapurple; } Related CSS color-contrast() [external] Requires @function error() [private] Color Previews papayawhip #ffefd5 rgb(255, 239, 213) hsl(37, 100%, 92%) default #000000 rgb(0, 0, 0) hsl(0, 0%, 0%) highest #800000 rgb(128, 0, 0) hsl(0, 100%, 25%) first #663399 rgb(102, 51, 153) hsl(270, 50%, 40%)"},"CONTRIBUTING.html":{"filename":"CONTRIBUTING.html","title":"Contributing","contents":"Contributing to Blend Ideas, issues, and pull-requests are welcome! Github Issues are the best place to request a feature, file a bug, or just ask a question. Also a great place to discuss possible features before you submit a PR. Pull Requests are a big help, if you’re willing to jump in and make things happen. For a bugfix, or documentation, just jump right in. For major changes or new features, it’s best to discuss in an issue first. Process Clone the repo, and then use yarn to install development dependencies like Dart Sass, True, SassDoc, and Herman: yarn The primary codebase is in the sass/ folder, with matching tests in the test/ directory. Any major code changes should also update the tests/docs. yarn test will run the tests yarn docs will build the documentation site yarn sass will re-compile the code in demo/ (mainly for experiments as you work) yarn commit to run all three Conduct Please follow the Sass Community Guidelines and Oddbird Code of Conduct."},"index.html":{"filename":"index.html","title":"@oddbird/blend Documentation","contents":"View Project View Source Blend CSS color spaces for Dart Sass… CSS Color Module Level 4 & Level 5 include several new CSS color formats, new color-adjustment syntax, and a contrast function. Blend provides early access to many of these features, while working with Sass colors. Note that conversion between color-spaces requires gamut-adjustments and rounding. While we use the same conversion math recommended for browsers, pre-processing can result in slight variations in each step. Converting a color from one format to another and back again, may result in slight differences. Color Picker To get started with new CSS color formats (and LCH in particular), check out the wonderful LCH Color Picker by Lea Verou. We use the same conversion math, originally written in JS by Chris Lilley and Tab Atkins. Usage Download the files from GitHub, or install the npm package: npm install @oddbird/blend --save-dev Import with Dart Sass @use '/blend'; Lab & LCH Formats (CIE) LCH & Lab color-conversion into (sRGB) sass colors: $cie-to-sass: ( blend.lch(30% 50 300), blend.lab(60% -60 60), blend.lch(60% 75 120, 50%), // as % blend.lab(60% -60 60, 0.5), // or as fraction ); Color Contrast Based on the proposed Level 5 color-contrast() function: $contrast: ( // default black or white for best contrast blend.contrast($color), // highest contrast blend.contrast($color, maroon, rebeccapurple, cyan), // first color with contrast >= 4.5 blend.contrast($color, maroon, rebeccapurple, 4.5), ); Inspecting Colors Inspect LCH & Lab values of Sass colors: $inspect: ( blend.lightness($color), blend.a($color), blend.b($color), blend.chroma($color), blend.hue($color), ); Relative Colors Relative Sass color adjustments using LCH & Lab channels $adjust: ( // set chroma to 10 blend.set($color, $chroma: 10), // adjust hue by -10 blend.adjust($color, $hue: -10), // scale lightness 10% lighter blend.scale($color, $lightness: 10%), ); A relative-color shorthand, based on rough interpretation of the Level 5 relative color syntax: $from: ( // set chroma to 20 blend.from($color, l, 20, h), // linear adjustments to a channel blend.from($color, l, c, h -60), // relative scale, e.g. \"half-way to white\" blend.from($color, l 50%, c, h), // multiply the channel value blend.from($color, 2l, c, h), ); Todo The initial version is mostly focused on CIE colors, but Level 4 includes an array of new formats. We’re working on it. See the full list of planned enhancements. @use 'blend'; $new-formats: ( blend.hwb(120deg 15% 15%), blend.color(display-p3 0.728 0.2824 0.4581), blend.color(rec-2020 0.6431 0.2955 0.4324), ..., ); $from-sass: ( blend.get($color, 'lch'), blend.get($color, 'lab'), blend.get($color, 'display-p3'), ..., ); $output: ( blend.string($color, 'lch'), blend.string($color, 'lab'), blend.string($color, 'display-p3'), ..., );"},"LICENSE.html":{"filename":"LICENSE.html","title":"Hipocratic MIT License","contents":"Copyright 2019 OddBird Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. No Harm: The software may not be used by anyone for systems or activities that actively and knowingly endanger, harm, or otherwise threaten the physical, mental, economic, or general well-being of other individuals or groups, in violation of the United Nations Universal Declaration of Human Rights (https://www.un.org/en/universal-declaration-human-rights/). Services: If the Software is used to provide a service to others, the licensee shall, as a condition of use, require those others not to use the service in any way that violates the No Harm clause above. Enforceability: If any portion or provision of this License shall to any extent be declared illegal or unenforceable by a court of competent jurisdiction, then the remainder of this License, or the application of such portion or provision in circumstances other than those as to which it is so declared illegal or unenforceable, shall not be affected thereby, and each portion and provision of this Agreement shall be valid and enforceable to the fullest extent permitted by law. THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. This Hippocratic License is an Ethical Source license (https://ethicalsource.dev) derived from the MIT License, amended to limit the impact of the unethical use of open source software."}}}
\ No newline at end of file
diff --git a/docs/search.html b/docs/search.html
index c15d3b6..58f5308 100644
--- a/docs/search.html
+++ b/docs/search.html
@@ -7,7 +7,7 @@
- Search Results | @mirisuzanne/blend Documentation
+ Search Results | @oddbird/blend Documentation
@@ -40,9 +40,9 @@
@@ -57,7 +57,7 @@
- @mirisuzanne/blend
+ @oddbird/blend
@@ -135,7 +135,7 @@
-
- GitHub Source
+ GitHub Source
-
@@ -175,7 +175,7 @@
diff --git a/package.json b/package.json
index 8eb282d..4f449f0 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
- "name": "@mirisuzanne/blend",
- "version": "0.1.1",
- "description": "more color tools for sass",
+ "name": "@oddbird/blend",
+ "version": "0.2.0",
+ "description": "New color formats, adjustments, and conversions in Sass",
"publishConfig": {
"access": "public"
},
@@ -10,16 +10,21 @@
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
- "url": "git://github.com/mirisuzanne/blend.git"
+ "url": "git://github.com/oddbird/blend.git"
},
- "bugs": "https://github.com/mirisuzanne/blend/issues",
- "homepage": "https://github.com/mirisuzanne/blend/",
+ "bugs": "https://github.com/oddbird/blend/issues",
+ "homepage": "https://github.com/oddbird/blend/",
"keywords": [
"sass",
"scss",
"css",
"colors",
- "CIE Lab",
+ "design",
+ "design systems",
+ "CIE",
+ "Lab",
+ "sRGB",
+ "hwb",
"LCH"
],
"scripts": {