Hi,
if we define in color settings a html color with letter (ex: 00FF00), this setting don't works.
In script renderer.php, in _function get_colorconfig(): your test if (is_numeric('0x'.$color)) don't allow hexadecimal color with letter.
Maybe you can use something like :
if(preg_match('/^#?[a-f0-9]{6}$/i', $color))
Hi, if we define in color settings a html color with letter (ex: 00FF00), this setting don't works. In script renderer.php, in _function get_colorconfig(): your test
if (is_numeric('0x'.$color))
don't allow hexadecimal color with letter. Maybe you can use something like :if(preg_match('/^#?[a-f0-9]{6}$/i', $color))