File: /home/axxoncom/domains/maxvin.pk/private_html/wp-content/themes/jolie/vamtam/helpers/css.php
<?php
/**
* CSS-related helpers
*
* @package vamtam/jolie
*/
/**
* Map an accent name to its value
*
* @param string $color accent name
* @param string|bool $deprecated
* @return string hex color or the input string
*/
function vamtam_sanitize_accent( $color, $deprecated = false ) {
if ( preg_match( '/accent(?:-color-)?(\d)/i', $color, $matches ) ) {
$num = (int) $matches[1];
$color = "var( --vamtam-accent-color-{$num} )";
}
return $color;
}