Home
last modified time | relevance | path

Searched refs:hsl (Results 1 – 25 of 45) sorted by relevance

12

/plugin/bpmnio/vendor/bpmn-js/dist/assets/
Dbpmn-js.css4 --color-grey-225-10-15: hsl(225, 10%, 15%);
5 --color-grey-225-10-35: hsl(225, 10%, 35%);
6 --color-grey-225-10-55: hsl(225, 10%, 55%);
7 --color-grey-225-10-75: hsl(225, 10%, 75%);
8 --color-grey-225-10-80: hsl(225, 10%, 80%);
9 --color-grey-225-10-85: hsl(225, 10%, 85%);
10 --color-grey-225-10-90: hsl(225, 10%, 90%);
11 --color-grey-225-10-95: hsl(225, 10%, 95%);
12 --color-grey-225-10-97: hsl(225, 10%, 97%);
14 --color-blue-205-100-45: hsl(205, 100%, 45%);
[all …]
Ddiagram-js.css5 --color-grey-225-10-15: hsl(225, 10%, 15%);
6 --color-grey-225-10-35: hsl(225, 10%, 35%);
7 --color-grey-225-10-55: hsl(225, 10%, 55%);
8 --color-grey-225-10-75: hsl(225, 10%, 75%);
9 --color-grey-225-10-80: hsl(225, 10%, 80%);
10 --color-grey-225-10-85: hsl(225, 10%, 85%);
11 --color-grey-225-10-90: hsl(225, 10%, 90%);
12 --color-grey-225-10-95: hsl(225, 10%, 95%);
13 --color-grey-225-10-97: hsl(225, 10%, 97%);
15 --color-blue-205-100-45: hsl(205, 100%, 45%);
[all …]
/plugin/bpmnio/vendor/dmn-js/dist/assets/
Ddmn-js-shared.css3 --color-grey-225-10-15: hsl(225 10% 15%);
4 --color-grey-225-10-35: hsl(225 10% 35%);
5 --color-grey-225-10-55: hsl(225 10% 55%);
6 --color-grey-225-10-75: hsl(225 10% 75%);
7 --color-grey-225-10-80: hsl(225 10% 80%);
8 --color-grey-225-10-85: hsl(225 10% 85%);
9 --color-grey-225-10-90: hsl(225 10% 90%);
10 --color-grey-225-10-95: hsl(225 10% 95%);
11 --color-grey-225-10-97: hsl(225 10% 97%);
12 --color-blue-205-100-35: hsl(205 100% 35%);
[all …]
Ddiagram-js.css5 --color-grey-225-10-15: hsl(225, 10%, 15%);
6 --color-grey-225-10-35: hsl(225, 10%, 35%);
7 --color-grey-225-10-55: hsl(225, 10%, 55%);
8 --color-grey-225-10-75: hsl(225, 10%, 75%);
9 --color-grey-225-10-80: hsl(225, 10%, 80%);
10 --color-grey-225-10-85: hsl(225, 10%, 85%);
11 --color-grey-225-10-90: hsl(225, 10%, 90%);
12 --color-grey-225-10-95: hsl(225, 10%, 95%);
13 --color-grey-225-10-97: hsl(225, 10%, 97%);
15 --color-blue-205-100-45: hsl(205, 100%, 45%);
[all …]
/plugin/sequencediagram/bower_components/snap.svg/doc/css/
Dprism.css37 background:hsl(200, 4%, 16%); /* #282A2B */
40 background:hsl(200, 4%, 16%); /* #282A2B */
46 border: .13em solid hsl(0,0%,33%); /* #545454 */
55 color: hsl(0, 0%, 47%); /* #777777 */
69 color: hsl(14, 58%, 55%); /* #CF6A4C */
75 color:hsl(53, 89%, 79%); /* #F9EE98 */
85 color:hsl(76, 21%, 52%); /* #8F9D6A */
89 color:hsl(218, 22%, 55%); /* #7587A6 */
94 color: hsl(42, 75%, 65%); /* #E9C062 */
113 color: hsl(33, 33%, 52%); /* #AC885B */
[all …]
/plugin/asciidocjs/node_modules/color-convert/
Dconversions.js16 hsl: {channels: 3, labels: 'hsl'}, property
55 convert.rgb.hsl = function (rgb) { function
145 const h = convert.rgb.hsl(rgb)[0];
244 convert.hsl.rgb = function (hsl) { argument
245 const h = hsl[0] / 360;
246 const s = hsl[1] / 100;
247 const l = hsl[2] / 100;
292 convert.hsl.hsv = function (hsl) { argument
293 const h = hsl[0];
294 let s = hsl[1] / 100;
[all …]
DREADME.md6 It converts all ways between `rgb`, `hsl`, `hsv`, `hwb`, `cmyk`, `ansi`, `ansi16`, `hex` strings, a…
11 convert.rgb.hsl(140, 200, 100); // [96, 48, 59]
/plugin/dev/www/
Dawesomplete.css83 background: hsl(200, 40%, 80%);
88 background: hsl(205, 40%, 40%);
93 background: hsl(65, 100%, 50%);
97 background: hsl(68, 100%, 41%);
101 background: hsl(86, 100%, 21%);
/plugin/mikioplugin/inc/stemmechanics/lesserphp/
H A Dlessc.inc.php1186 $hsl = $this->toHSL($color);
1187 $hsl[3] = $this->clamp($hsl[3] - $delta, 100);
1188 return $this->toRGB($hsl);
1194 $hsl = $this->toHSL($color);
1195 $hsl[3] = $this->clamp($hsl[3] + $delta, 100);
1196 return $this->toRGB($hsl);
1202 $hsl = $this->toHSL($color);
1203 $hsl[2] = $this->clamp($hsl[2] + $delta, 100);
1204 return $this->toRGB($hsl);
1210 $hsl = $this->toHSL($color);
[all …]
/plugin/asciidocjs/node_modules/ansi-styles/
Dreadme.md28 console.log(style.bgColor.ansi.hsl(120, 80, 72) + 'Hello world!' + style.bgColor.close);
120 - `hsl`
132 style.color.ansi256.hsl(120, 100, 60); // HSL to 256 color ansi foreground code
133 style.bgColor.ansi256.hsl(120, 100, 60); // HSL to 256 color ansi foreground code
Dindex.d.ts181 hsl(hue: number, saturation: number, lightness: number): string; method
/plugin/diagramsnet/lib/plugins/
Dvoice.js2298 var color, rgb, hsl;
2303 hsl = ntc.hsl(color);
2304 ntc.names[i].push(rgb[0], rgb[1], rgb[2], hsl[0], hsl[1], hsl[2]);
2320 var hsl = ntc.hsl(color);
2321 var h = hsl[0], s = hsl[1], l = hsl[2];
2345 hsl: function (color) { method
/plugin/asciidocjs/node_modules/chalk/
Dindex.d.ts208 hsl(hue: number, saturation: number, lightness: number): Chalk; method
Dreadme.md274 Note that function styles (`rgb()`, `hsl()`, `keyword()`, etc.) may not contain spaces between para…
301 - [`hsl`](https://en.wikipedia.org/wiki/HSL_and_HSV) - Example: `chalk.hsl(32, 100, 50).bold('Orang…
/plugin/pdfjs/pdfjs/web/
Dviewer.css807 color: hsl(0,0%,85%);
844 color: hsl(0, 0%, 75%);
944 background-color: hsl(0, 0%, 85%);
945 color: hsl(0, 0%, 32%);
1235 color: hsl(0,0%,95%);
1243 background: hsl(0,0%,24%);
1553 color: hsl(0,0%,95%);
1605 color: hsl(0,0%,85%);
1907 color: hsl(0,0%,85%);
/plugin/revealjs/
Dchangelog.md22 …supported: `red`, `#f00`, `#ff0000`, `rgb(255,0,0)`, `rgba(255,0,0,0.5)`, `hsl(0,100%,50%)`, `hsla…
DREADME.md270 …supported: `red`, `#f00`, `#ff0000`, `rgb(255,0,0)`, `rgba(255,0,0,0.5)`, `hsl(0,100%,50%)`, `hsla…
/plugin/dirtylittlehelper/mermaid/editor/docs/
D2.2.js23919 return /^(rgb|rgba|hsl|hsla)$/gi.test(name);
32819 … var hsl = Object(_languageFacts_facts_js__WEBPACK_IMPORTED_MODULE_4__["hslFromColor"])(color);
32820 if (hsl.a === 1) {
32821 … label = "hsl(" + hsl.h + ", " + Math.round(hsl.s * 100) + "%, " + Math.round(hsl.l * 100) + "%)";
32824 …label = "hsla(" + hsl.h + ", " + Math.round(hsl.s * 100) + "%, " + Math.round(hsl.l * 100) + "%, "…
/plugin/amcharts/assets/amcharts/plugins/export/libs/fabric.js/
Dfabric.js4519 hsl = this._rgbToHsl(source[0], source[1], source[2]);
4521 return 'hsl(' + hsl[0] + ',' + hsl[1] + '%,' + hsl[2] + '%)';
4530 hsl = this._rgbToHsl(source[0], source[1], source[2]);
4532 return 'hsla(' + hsl[0] + ',' + hsl[1] + '%,' + hsl[2] + '%,' + source[3] + ')';
Dfabric.min.js2hsl=this._rgbToHsl(source[0],source[1],source[2]);return"hsl("+hsl[0]+","+hsl[1]+"%,"+hsl[2]+"%)"}…
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/
Dd3.min.js2 …),function(n){return sn(e+u*n,r+o*n,i+a*n)+""}}function Dr(n,t){n=ao.hsl(n),t=ao.hsl(t);var e=n.h,…
3hsl=ln;var Go=ln.prototype=new an;Go.brighter=function(n){return n=Math.pow(.7,arguments.length?n:…
4 …,t){var e=typeof t;return("string"===e?ua.has(t.toLowerCase())||/^(#|rgb\(|hsl\()/i.test(t)?vr:mr:…
/plugin/dw2pdf/vendor/mpdf/mpdf/
DCHANGELOG.md154 - Refactored and tested color handling with potential conversion fixes in `hsl*()` color definitions
/plugin/codemirror/dist/modes/
Dcss.min.js.map1 …"highlighttext\",\n \"hiragana\", \"hiragana-iroha\", \"horizontal\", \"hsl\", \"hsla\", \"hue\…
Dstylus.min.js.map1 …light\",\"highlighttext\",\"hiragana\",\"hiragana-iroha\",\"horizontal\",\"hsl\",\"hsla\",\"icon\"…
/plugin/asciidocjs/node_modules/clean-css/
DHistory.md136 * Fixed issue [#924](https://github.com/jakubpawlowicz/clean-css/issues/924) - `hsl` zero percent e…

12