/home/techb158/balacoffee.com/wp-content/plugins/wpforms/includes/functions
Edit: /home/techb158/balacoffee.com/wp-content/plugins/wpforms/includes/functions/colors.php (1374B)
155 ? $dark : $light;
}
/**
* Convert hex color value to RGB.
*
* @since 1.7.9
*
* @param string $hex Color value in hex format.
*
* @return string Color value in RGB format.
*/
function wpforms_hex_to_rgb( $hex ) {
$hex = ltrim( $hex, '#' );
// Convert shorthand colors to full format, e.g. "FFF" -> "FFFFFF".
$rgb_parts = preg_replace( '~^(.)(.)(.)$~', '$1$1$2$2$3$3', $hex );
return sprintf(
'%1$d, %2$d, %3$d',
hexdec( $rgb_parts[0] . $rgb_parts[1] ),
hexdec( $rgb_parts[2] . $rgb_parts[3] ),
hexdec( $rgb_parts[4] . $rgb_parts[5] )
);
}