wc_hex_lighter() WC 1.0
Make HEX color lighter.
Хуков нет.
Возвращает
Строку.
Использование
wc_hex_lighter( $color, $factor );
- $color(разное) (обязательный)
- Color.
- $factor(число)
- Lighter factor.
По умолчанию: 30
Код wc_hex_lighter() wc hex lighter WC 5.0.0
function wc_hex_lighter( $color, $factor = 30 ) {
$base = wc_rgb_from_hex( $color );
$color = '#';
foreach ( $base as $k => $v ) {
$amount = 255 - $v;
$amount = $amount / 100;
$amount = NumberUtil::round( $amount * $factor );
$new_decimal = $v + $amount;
$new_hex_component = dechex( $new_decimal );
if ( strlen( $new_hex_component ) < 2 ) {
$new_hex_component = '0' . $new_hex_component;
}
$color .= $new_hex_component;
}
return $color;
}