Home
last modified time | relevance | path

Searched refs:rgb (Results 1 – 25 of 183) sorted by relevance

12345678

/plugin/asciidocjs/node_modules/color-convert/
Dconversions.js15 rgb: {channels: 3, labels: 'rgb'}, property
55 convert.rgb.hsl = function (rgb) { argument
56 const r = rgb[0] / 255;
57 const g = rgb[1] / 255;
58 const b = rgb[2] / 255;
94 convert.rgb.hsv = function (rgb) { argument
101 const r = rgb[0] / 255;
102 const g = rgb[1] / 255;
103 const b = rgb[2] / 255;
141 convert.rgb.hwb = function (rgb) { argument
[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]
12 convert.keyword.rgb('blue'); // [0, 0, 255]
14 var rgbChannels = convert.rgb.channels; // 3
41 convert.rgb.cmyk(167, 255, 4); // [ 35, 0, 98, 0 ]
42 convert.rgb.cmyk.raw(167, 255, 4); // [ 34.509803921568626, 0, 98.43137254901961, 0 ]
53 convert.rgb.hex(123, 45, 67); // '7B2D43'
54 convert.rgb.hex([123, 45, 67]); // '7B2D43'
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Gif/
DColorTable.php34 $rgb = substr($lpData, $i * 3, 3);
35 if (strlen($rgb) < 3) {
39 $this->m_arColors[] = (ord($rgb[2]) << 16) + (ord($rgb[1]) << 8) + ord($rgb[0]);
60 function colorIndex($rgb) argument
62 $rgb = intval($rgb) & 0xFFFFFF;
63 $r1 = ($rgb & 0x0000FF);
64 $g1 = ($rgb & 0x00FF00) >> 8;
65 $b1 = ($rgb & 0xFF0000) >> 16;
/plugin/html2pdf/html2pdf/html2ps/
Dvalue.color.php6 function Color($rgb = array(0,0,0), $transparent = true) { argument
10 $this->r = max($rgb[0] / 255.0, 0);
11 $this->g = max($rgb[1] / 255.0, 0);
12 $this->b = max($rgb[2] / 255.0, 0);
38 function equals($rgb) { argument
40 $this->r == $rgb->r &&
41 $this->g == $rgb->g &&
42 $this->b == $rgb->b;
Dps.l2.image.encoder.stream.inc.php23 $rgb = ImageColorAt($dest_img, $x, $y);
24 $r = ($rgb >> 16) & 0xFF;
25 $g = ($rgb >> 8) & 0xFF;
26 $b = $rgb & 0xFF;
Dps.l3.image.encoder.stream.inc.php52 $rgb = ImageColorAt($dest_img, $x, $y);
53 $r = ($rgb >> 16) & 0xFF;
54 $g = ($rgb >> 8) & 0xFF;
55 $b = $rgb & 0xFF;
111 $rgb = ImageColorAt($dest_img, $x, $y);
112 $r = ($rgb >> 16) & 0xFF;
113 $g = ($rgb >> 8) & 0xFF;
114 $b = $rgb & 0xFF;
Dps.image.encoder.simple.inc.php53 $rgb = ImageColorAt($dest_img, $x, $y);
54 $r = ($rgb >> 16) & 0xFF;
55 $g = ($rgb >> 8) & 0xFF;
56 $b = $rgb & 0xFF;
105 $rgb = ImageColorAt($dest_img, $x, $y);
106 $r = ($rgb >> 16) & 0xFF;
107 $g = ($rgb >> 8) & 0xFF;
108 $b = $rgb & 0xFF;
/plugin/csstimeline/
Dstyle.css21 background: rgb(80,80,80);
22 …background: -moz-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rg…
24 …background: -webkit-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%,…
25 …background: -o-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba…
26 …background: -ms-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgb…
27 …background: linear-gradient(to bottom, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, r…
68 background: rgb(248,248,248);
100 border: 4px solid rgb(255,80,80);
117 border-left-color: rgb(248,248,248);
131 border-right-color: rgb(248,248,248);
[all …]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Color/
DColorModeConverter.php29 $rgb = $this->cmyk2rgb($c);
30 return $this->rgb2gray($rgb);
72 $rgb = [];
74 $rgb[0] = (int) ($colors * (255 - ($c[1] * 2.55)) / 255);
75 $rgb[1] = (int) ($colors * (255 - ($c[2] * 2.55)) / 255);
76 $rgb[2] = (int) ($colors * (255 - ($c[3] * 2.55)) / 255);
78 return [5, $rgb[0], $rgb[1], $rgb[2], $c[5]];
81 return [3, $rgb[0], $rgb[1], $rgb[2]];
/plugin/diagramsnet/lib/js/diagramly/vsdx/
DbmpDecoder.js99 var rgb = this.palette[((b>>(7-i))&0x1)];
100 this.data[location+i*4] = rgb.red;
101 this.data[location+i*4 + 1] = rgb.green;
102 this.data[location+i*4 + 2] = rgb.blue;
127 var rgb = this.palette[before];
128 this.data[location] = rgb.red;
129 this.data[location + 1] = rgb.green;
130 this.data[location + 2] = rgb.blue;
135 rgb = this.palette[after];
136 this.data[location+4] = rgb.red;
[all …]
/plugin/highlightjs/highlight/styles/
Dvs.css12 color: rgb(0, 128, 0);
23 color: rgb(0, 0, 255);
42 color: rgb(163, 21, 21);
60 color: rgb(43, 145, 175);
66 color: rgb(128, 128, 128);
/plugin/wideredit/
Dstyle.less15 …linear-gradient(180deg, rgb(173,173,173) 0%, rgb(222,222,222) 14%, rgb(240,240,240) 70%, rgb(255,2…
/plugin/diagramsnet/lib/styles/
Datlas.css53 text-shadow: rgb(41, 89, 137) 0px 1px 0px;
55 background-image:linear-gradient(rgb(70, 135, 206) 0px, rgb(48, 104, 162) 100%);
63 background-image: linear-gradient(rgb(90, 148, 211) 0px, rgb(54, 115, 181) 100%);
70 text-shadow: rgb(41, 89, 137) 0px 1px 0px;
72 background-image:linear-gradient(rgb(70, 135, 206) 0px, rgb(48, 104, 162) 100%);
80 background-image: linear-gradient(rgb(90, 148, 211) 0px, rgb(54, 115, 181) 100%);
89 border-color: rgb(195, 195, 195) !important;
136 color: rgb(179, 179, 179);
189 color: rgb(179, 179, 179);
194 background:rgb(32, 80, 129);
[all …]
/plugin/pgn4web/pgn4web/libs/jscolor/
Djscolor.js342 this.rgb = [1, 1, 1]; // read-only 0-1, 0-1, 0-1 property
458 0.213 * this.rgb[0] +
459 0.715 * this.rgb[1] +
460 0.072 * this.rgb[2]
477 this.rgb = HSV_RGB(
493 r===null ? this.rgb[0] : r,
494 g===null ? this.rgb[1] : g,
495 b===null ? this.rgb[2] : b
506 var rgb = HSV_RGB(this.hsv[0], this.hsv[1], this.hsv[2]);
507 this.rgb[0] = rgb[0];
[all …]
/plugin/diagramsnet/lib/js/jscolor/
Djscolor.js310 this.rgb = [1, 1, 1]; // read-only 0-1, 0-1, 0-1 property
419 0.213 * this.rgb[0] +
420 0.715 * this.rgb[1] +
421 0.072 * this.rgb[2]
437 this.rgb = HSV_RGB(
451 r===null ? this.rgb[0] : (this.rgb[0]=r),
452 g===null ? this.rgb[1] : (this.rgb[1]=g),
453 b===null ? this.rgb[2] : (this.rgb[2]=b)
493 (0x100 | Math.round(255*this.rgb[0])).toString(16).substr(1) +
494 (0x100 | Math.round(255*this.rgb[1])).toString(16).substr(1) +
[all …]
/plugin/xtermrtf/
Dsyntax.php128 preg_match("/.red(.*?).green(.*?).blue(.*?)$/i", $couleurs[$i], $rgb);
129 $r=dechex($rgb[1]);
130 $v=dechex($rgb[2]);
131 $b=dechex($rgb[3]);
/plugin/dirtylittlehelper/mermaid/editor/docs/
Dglobal.css21 color: rgb(0,100,200);
30 color: rgb(0,80,160);
87 color: rgb(0,100,200);
96 color: rgb(0,80,160);
/plugin/asciidocjs/node_modules/ansi-styles/
Dindex.js14 const rgb = fn(...args); constant
15 return `\u001B[${38 + offset};2;${rgb[0]};${rgb[1]};${rgb[2]}m`;
/plugin/anewssystem/
Dstyle.css366 background: rgb(255,255,204);
367 border: 1px dotted rgb(204,0,51);
374 background: rgb(255,255,255);
400 background: rgb(255,255,204);
401 border: 1px dotted rgb(192,192,192);
402 Border-left: 5px solid rgb(192,192,192);
413 background: rgb(255,255,204,0);
422 background: rgb(255,255,204);
/plugin/orphanmedia/
Dstyle.css36 background: rgb(255,255,204) !important;
41 color: rgb(80,80,80);
/plugin/orphanmedia2/
Dstyle.css36 background: rgb(255,255,204) !important;
41 color: rgb(80,80,80);
/plugin/gchart/
Dsyntax.php241 * @param string $rgb original hex color
245 protected function createColorPalette($rgb, $count) argument
250 $palette[] = $rgb . dechex(255 - $i * $inc);
/plugin/datatables/assets/datatables.net/css/
DdataTables.semanticui.min.css1rgb(33, 37, 41)}table.dataTable td.dt-control{text-align:center;cursor:pointer}table.dataTable td.…
DdataTables.foundation.css12 --dt-html-background: rgb(33, 37, 41);
126 background: rgb(0, 137, 182);
127 background: rgb(var(--dt-row-selected));
277 box-shadow: inset 0 0 0 9999px rgb(0, 137, 182);
278 box-shadow: inset 0 0 0 9999px rgb(var(--dt-row-selected));
279 color: rgb(255, 255, 255);
280 color: rgb(var(--dt-row-selected-text));
283 color: rgb(9, 10, 11);
284 color: rgb(var(--dt-row-selected-link));
DdataTables.semanticui.css12 --dt-html-background: rgb(33, 37, 41);
126 background: rgb(224, 224, 224);
127 background: rgb(var(--dt-row-selected));
278 box-shadow: inset 0 0 0 9999px rgb(224, 224, 224);
279 box-shadow: inset 0 0 0 9999px rgb(var(--dt-row-selected));
280 color: rgb(0, 0, 0);
281 color: rgb(var(--dt-row-selected-text));
284 color: rgb(9, 10, 11);
285 color: rgb(var(--dt-row-selected-link));

12345678