Home
last modified time | relevance | path

Searched refs:getGreen (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.php438 $targetGreen = self::round(Math::lerp($color2->getGreen(), $this->getGreen(), $weight));
458 $targetGreen = self::round(Math::unlerp($color2->getGreen(), $this->getGreen(), $weight));
460 throw new ExceptionCompile("This is not possible, the green value ({$color2->getGreen()}) with the percentage $weight could not be unmixed. They were not calculated with color mixing.");
533 $greenHex = $toCssHex($this->getGreen());
610 function getGreen() function in ComboStrap\\ColorRgb
665 return [$this->getRed(), $this->getGreen(), $this->getBlue()];
698 $G = $toLuminanceFactor($this->getGreen());
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.php59 public function getGreen() function in Google\\Service\\DLP\\GooglePrivacyDlpV2Color
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Document/
H A DGoogleTypeColor.php77 public function getGreen() function in Google\\Service\\Document\\GoogleTypeColor
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Vision/
H A DColor.php77 public function getGreen() function in Google\\Service\\Vision\\Color
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Docs/
H A DRgbColor.php59 public function getGreen() function in Google\\Service\\Docs\\RgbColor
/plugin/authgooglesheets/vendor/google/apiclient-services/src/FirebaseCloudMessaging/
H A DColor.php77 public function getGreen() function in Google\\Service\\FirebaseCloudMessaging\\Color
/plugin/authgooglesheets/vendor/google/apiclient-services/src/HangoutsChat/
H A DColor.php77 public function getGreen() function in Google\\Service\\HangoutsChat\\Color
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Sheets/
H A DColor.php77 public function getGreen() function in Google\\Service\\Sheets\\Color
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Slides/
H A DRgbColor.php59 public function getGreen() function in Google\\Service\\Slides\\RgbColor
/plugin/diagramsnet/lib/js/diagramly/vsdx/
H A Dimporter.js5324 Color.prototype.getGreen = function () { method in Color
5338 var g = this.getGreen() / 255.0;
5366 var g = this.getGreen() / 255.0;
/plugin/diagramsnet/lib/js/
H A Dextensions.min.js1285 …return this.red};b.prototype.setRed=function(a){this.red=a};b.prototype.getGreen=function(){return… method in b
1286getGreen()/255,g=this.getBlue()/255,n=Math.max(a,Math.max(b,g)),d=Math.min(a,Math.min(b,g)),k=(n+d…
/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.java86 int green = c1.getGreen() + (c2.getGreen() - c1.getGreen()) / 2; in average()