Home
last modified time | relevance | path

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

/plugin/combo/ComboStrap/
H A DColorHsl.php18 private $hue; variable in ComboStrap\\ColorHsl
32 public function __construct($hue, $saturation, $lightness) argument
34 $this->hue = $hue;
40 …public static function createFromChannels(float $hue, float $saturation, float $lightness): ColorH… argument
42 return new ColorHsl($hue, $saturation, $lightness);
57 return $this->hue;
85 $hue = $this->hue;
88 $x = $chroma * (1 - abs(fmod(($hue / 60), 2) - 1));
91 if ($hue < 60) {
95 } else if ($hue < 120) {
[all …]
H A DColorRgb.php381 $hue = $saturation = 0; // achromatic
387 $hue = 60 * fmod((($green - $blue) / $d), 6);
389 $hue += 360;
394 $hue = 60 * (($blue - $red) / $d + 2);
399 $hue = 60 * (($red - $green) / $d + 4);
409 return ColorHsl::createFromChannels($hue, $saturation * 100, $lightness * 100);
/plugin/struct/types/
H A DColor.php105 $hue = $this->getHue(parent::getSortString($value));
106 return $hue;
129 $hue = ($green - $blue) / ($max - $min);
132 $hue = 2 + ($blue - $red) / ($max - $min);
135 $hue = 4 + ($red - $green) / ($max - $min);
137 $hue *= 60;
138 if ($hue < 0) {
139 $hue += 360;
141 return $hue;
/plugin/asciidocjs/node_modules/chalk/
Dindex.d.ts208 hsl(hue: number, saturation: number, lightness: number): Chalk;
213 hsv(hue: number, saturation: number, value: number): Chalk;
218 hwb(hue: number, whiteness: number, blackness: number): Chalk;
269 bgHsl(hue: number, saturation: number, lightness: number): Chalk;
274 bgHsv(hue: number, saturation: number, value: number): Chalk;
279 bgHwb(hue: number, whiteness: number, blackness: number): Chalk;
/plugin/asciidocjs/node_modules/ansi-styles/
Dindex.d.ts181 hsl(hue: number, saturation: number, lightness: number): string;
190 hsv(hue: number, saturation: number, value: number): string;
199 hwb(hue: number, whiteness: number, blackness: number): string;
/plugin/asciidocjs/node_modules/clean-css/lib/optimizer/level-1/
Dshorten-hsl.js49 function shortenHsl(hue, saturation, lightness) { argument
50 var asRgb = hslToRgb(hue, saturation, lightness);
Doptimize.js115 .replace(/hsl\((-?\d+),(-?\d+)%?,(-?\d+)%?\)/gi, function (match, hue, saturation, lightness) { argument
116 return shortenHsl(hue, saturation, lightness);
/plugin/asciidocjs/node_modules/color-convert/
Dconversions.js651 let hue;
660 hue = 0;
663 hue = ((g - b) / chroma) % 6;
666 hue = 2 + (b - r) / chroma;
668 hue = 4 + (r - g) / chroma;
671 hue /= 6;
672 hue %= 1;
674 return [hue * 360, chroma * 100, grayscale * 100];
/plugin/dirtylittlehelper/mermaid/editor/docs/
D29.29.js.map1 …e|when|iscolor|isnumber|isstring|iskeyword|isurl|ispixel|ispercentage|isem|hue|saturation|lightnes…
D2.2.js24013 function colorFromHSL(hue, sat, light, alpha) {
24015 hue = hue / 60.0;
24020 var hueToRgb = function (t1, t2, hue) {
24021 while (hue < 0) {
24022 hue += 6;
24024 while (hue >= 6) {
24025 hue -= 6;
24027 if (hue < 1) {
24028 return (t2 - t1) * hue + t1;
24030 if (hue < 3) {
[all …]
D2.2.js.map1hue\",\n \"browsers\": [\n \"E79\",\n …
Dbundle.css2105 .colorpicker-body .hue-strip {
Dbundle.js.map1hue.js","webpack:///./node_modules/d3-interpolate/src/index.js","webpack:///./node_modules/d3-inte…
Dbundle.js426 …ar d=n(872);t.green=d.default;var u=n(873);t.blue=u.default;var h=n(874);t.hue=h.default;var f=n(8…
/plugin/processing/
Dscript.js4718 var hue = h % 360;
4719 var f = hue % 60;
4723 switch (Math.floor(hue / 60)) {
4749 hue, saturation;
4757 hue = (green - blue) / (max - min);
4759 hue = 2 + ((blue - red) / (max - min));
4761 hue = 4 + ((red - green) / (max - min));
4764 hue /= 6;
4766 if (hue < 0) {
4767 hue += 1;
[all …]
/plugin/diagramsnet/lib/js/diagramly/vsdx/
Dimporter.js5519 function HSLColor(hue, sat, lum) { argument
5520 this.hue = 0;
5523 this.hue = hue;
5528 return this.hue;
5530 HSLColor.prototype.setHue = function (hue) { argument
5531 this.hue = hue;
5562 var h = this.hue;
6081 /*private*/ this.hue = 0;
6179 OoxmlColor.prototype.setHue = function (hue) { argument
6180 this.hue = hue;
[all …]
/plugin/codemirror/dist/modes/
Dcss.min.js.map1 … \"hiragana\", \"hiragana-iroha\", \"horizontal\", \"hsl\", \"hsla\", \"hue\", \"icon\", \"igno…
/plugin/diagramsnet/lib/math/extensions/a11y/
Dmathjax-sre.js556 …String(16);return 1===a.length?"0"+a:a};sre.ContrastPicker=function(){this.hue=10;this.sat=100;thi…
557 …e.ColorPicker.hsl2rgb_(this.hue,this.sat,this.light)))};sre.ContrastPicker.prototype.increment=fun…
/plugin/dirtylittlehelper/mermaid/editor/
Dbundle.css2105 .colorpicker-body .hue-strip {
Dbundle.js426 …ar d=n(872);t.green=d.default;var u=n(873);t.blue=u.default;var h=n(874);t.hue=h.default;var f=n(8…
/plugin/dirtylittlehelper/script/
Dmermaid.min.js.map1hue.js","webpack://mermaid/./node_modules/d3-interpolate/src/round.js","webpack://mermaid/./node_m…
/plugin/diagramsnet/lib/js/
Dextensions.min.js1294 …this.sat=this.hue=0;this.hue=a;this.sat=b;this.lum=g}b.prototype.getHue=function(){return this.hue
1295 a+6*(b-a)*g:.5>g?b:g<2/3?a+(b-a)*(2/3-g)*6:a};b.prototype.toRgb=function(){var a,b,g;g=this.hue;b=t…
1315 …Off=this.lum=this.satMod=this.satOff=this.sat=this.hueMod=this.hueOff=this.hue=this.alphaMod=this.…
1318 …n(a){this.alphaMod=a;this.hasEffects=!0};b.prototype.setHue=function(a){this.hue=a;this.hasEffects=
/plugin/zwidoku/files/
H A Djquery.js9 …:"byte"},green:{idx:1,type:"byte"},blue:{idx:2,type:"byte"}}},hsla:{props:{hue:{idx:0,type:"degree… property
/plugin/mermaid/
H A Dmermaid.min.js823 `}var hue,Y$e,K$e,Q$e,QE,ub,hb,ZE,UI=N(()=>{"use strict";ZM();$g();Uc();o(zI,"parseJSDoc");o(GI,"is…
/plugin/pdfjs/pdfjs/build/
Dpdf.worker.js.map1 …clusion':\n return 'exclusion';\n case 'Hue':\n return 'hue';\n case 'Satu…