Home
last modified time | relevance | path

Searched refs:getBlue (Results 1 – 15 of 15) sorted by last modified time

/plugin/combo/ComboStrap/
H A DBrandingColors.php53 box-shadow: 0 0 0 0.25rem rgb({$primaryColor->getRed()} {$primaryColor->getGreen()} {$primaryColor->getBlue()} / 25%);
57 box-shadow: 0 0 0 0.25rem rgb({$primaryColor->getRed()} {$primaryColor->getGreen()} {$primaryColor->getBlue()} / 25%);
H A DColorRgb.php439 $targetBlue = self::round(Math::lerp($color2->getBlue(), $this->getBlue(), $weight));
456 throw new ExceptionCompile("This is not possible, the red value ({$color2->getBlue()}) with the percentage $weight could not be unmixed. They were not calculated with color mixing.");
462 $targetBlue = self::round(Math::unlerp($color2->getBlue(), $this->getBlue(), $weight));
464 throw new ExceptionCompile("This is not possible, the blue value ({$color2->getBlue()}) with the percentage $weight could not be unmixed. They were not calculated with color mixing.");
534 $blueHex = $toCssHex($this->getBlue());
616 function getBlue() function in ComboStrap\\ColorRgb
665 return [$this->getRed(), $this->getGreen(), $this->getBlue()];
699 $B = $toLuminanceFactor($this->getBlue());
[all...]
H A DFetcherVignette.php125 $mutedGdColor = imagecolorallocate($vignetteImageHandler, $mutedRgb->getRed(), $mutedRgb->getGreen(), $mutedRgb->getBlue());
193 $mutedGdColor = imagecolorallocate($vignetteImageHandler, $mutedRgb->getRed(), $mutedRgb->getGreen(), $mutedRgb->getBlue());
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DLP/
H A DGooglePrivacyDlpV2Color.php45 public function getBlue() function in Google\\Service\\DLP\\GooglePrivacyDlpV2Color
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Document/
H A DGoogleTypeColor.php63 public function getBlue() function in Google\\Service\\Document\\GoogleTypeColor
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Vision/
H A DColor.php63 public function getBlue() function in Google\\Service\\Vision\\Color
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Docs/
H A DRgbColor.php45 public function getBlue() function in Google\\Service\\Docs\\RgbColor
/plugin/authgooglesheets/vendor/google/apiclient-services/src/FirebaseCloudMessaging/
H A DColor.php63 public function getBlue() function in Google\\Service\\FirebaseCloudMessaging\\Color
/plugin/authgooglesheets/vendor/google/apiclient-services/src/HangoutsChat/
H A DColor.php63 public function getBlue() function in Google\\Service\\HangoutsChat\\Color
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Sheets/
H A DColor.php63 public function getBlue() function in Google\\Service\\Sheets\\Color
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Slides/
H A DRgbColor.php45 public function getBlue() function in Google\\Service\\Slides\\RgbColor
/plugin/diagramsnet/lib/js/diagramly/vsdx/
H A Dimporter.js5330 Color.prototype.getBlue = function () { method in Color
5339 var b = this.getBlue() / 255.0;
5367 var b = this.getBlue() / 255.0;
/plugin/diagramsnet/lib/js/
H A Dextensions.min.js1285 …n this.green};b.prototype.setGreen=function(a){this.green=a};b.prototype.getBlue=function(){return… method in b
1286getBlue()/255,n=Math.max(a,Math.max(b,g)),d=Math.min(a,Math.min(b,g)),k=(n+d)/2;if(n===d)a=d=0;els…
/plugin/jcapture/lib/
H A Dtransform-3.0.2.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/jdraw/src/com/mxgraph/examples/swing/editor/
H A DShadowBorder.java87 int blue = c1.getBlue() + (c2.getBlue() - c1.getBlue()) / 2; in average()