Skip to content

Instantly share code, notes, and snippets.

View GypsySpellweaver's full-sized avatar
🏠
SOHO Work as Chindraba-work (qv)

Gypsy Spellweaver GypsySpellweaver

🏠
SOHO Work as Chindraba-work (qv)
View GitHub Profile
@brandonheyer
brandonheyer / rgbToHSL.php
Last active June 12, 2021 06:49
PHP snippet to convert RGB to HSL and HSL to RGB.
<?
function rgbToHsl( $r, $g, $b ) {
$oldR = $r;
$oldG = $g;
$oldB = $b;
$r /= 255;
$g /= 255;
$b /= 255;