Skip to content

Instantly share code, notes, and snippets.

View StephanWeinhold's full-sized avatar

Stephan Weinhold StephanWeinhold

View GitHub Profile
@StephanWeinhold
StephanWeinhold / rgbToHSL.php
Last active September 27, 2016 12:05 — forked from brandonheyer/rgbToHSL.php
PHP snippet to convert RGB to HSL and HSL to RGB.
<?php
function rgbToHsl($r, $g, $b)
{
$r /= 255;
$g /= 255;
$b /= 255;
$max = max($r, $g, $b);
$min = min($r, $g, $b);