Searched refs:hue (Results 1 – 5 of 5) sorted by relevance
| /template/strap/ComboStrap/ |
| H A D | ColorHsl.php | 18 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 D | ColorRgb.php | 381 $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);
|
| /template/dokui/css/ |
| D | dokui.css | 649 .sp-hue { border-color: #ccc; } 704 .sp-hue { font: inherit; }
|
| /template/templar/less/ |
| D | mixins.less | 399 background-color: hsla(hue(@color), saturation(@color), lightness(@color), @alpha); 402 border-color: hsla(hue(@color), saturation(@color), lightness(@color), @alpha);
|
| /template/ad-hominem/css/ |
| H A D | layout.less | 406 filter: hue-rotate(-80deg);
|