Home › Forums › Front-end Issues › Convert HEX value to HSV › Reply To: Convert HEX value to HSV
Sorry, I did not notice that. I guess to use that you first need to convert from hex to RGB
function html2rgb($color) {
if (substr($color, 0, 1) == '#') {
$color = substr($color, 1);
}
if (strlen($color) == 6) {
list($r, $g, $b) = array(
substr($color, 0, 2),
substr($color, 2, 2),
substr($color, 4, 2)
);
} elseif (strlen($color) == 6) {
list($r, $g, $b) = array(
substr($color, 0, 1).substr($color, 0, 1),
substr($color, 1, 1).substr($color, 1, 1),
substr($color, 2, 1).substr($color, 2, 1)
);
} else {
return false;
}
$r = hexdec($r);
$g = hexdec($g);
$b = hexdec($b);
return array('r' => $r, 'g' => $g, 'b' => $b);
}
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
🚀 ACF & ACF PRO 6.0.7 are now available.
— Advanced Custom Fields (@wp_acf) January 18, 2023
✨This release contains bug fixes and improvements while we continue to work on the next major release of ACF.https://t.co/wQgAOpwmUI
© 2023 Advanced Custom Fields.
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Cookie Policy. If you continue to use this site, you consent to our use of cookies.