well, it's both ^^
actually it's very easy to achieve, you have to create an replacement called {highlight} and then just open your functions_bbcodeparse.ophp file and change
PHP Code:
if ($vboptions['allowedbbcodes'] & ALLOW_BBCODE_COLOR)
{
// [COLOR=XXX]
$bbcodes['standard']['find']['[color='] = '#\[color=("|"|\'|)(\#?\w+)\\1\](.*)\[/color\]#esiU'; // {option} allows # and alpha-numeric
$bbcodes['standard']['replace']['[color='] = "handle_bbcode_parameter('\\3','" . str_replace("'", "\'", '<font color="\2">\3</font>') . "')";
$bbcodes['standard']['recurse']['color'][1] = array('replace_html' => '<font color="\5">\7</font>');
}
into
PHP Code:
if ($vboptions['allowedbbcodes'] & ALLOW_BBCODE_COLOR)
{
// [COLOR=XXX]
/*$bbcodes['standard']['find']['[color='] = '#\[color=("|"|\'|)(\#?\w+)\\1\](.*)\[/color\]#esiU'; // {option} allows # and alpha-numeric
$bbcodes['standard']['replace']['[color='] = "handle_bbcode_parameter('\\3','" . str_replace("'", "\'", '<font color="\2">\3</font>') . "')";
$bbcodes['standard']['recurse']['color'][1] = array('replace_html' => '<font color="\5">\7</font>');
*/ // prevent using of color-tags, change them into high-tags instead
$bbcodes['standard']['find']['[color='] = '#\[color=("|"|\'|)(\#?\w+)\\1\](.*)\[/color\]#esiU'; // {option} allows # and alpha-numeric
$bbcodes['standard']['replace']['[color='] = "handle_bbcode_parameter('\\3','" . str_replace("'", "\'", '<font color="{highlight}">\3</font>') . "')";
$bbcodes['standard']['recurse']['color'][1] = array('replace_html' => '<font color="{highlight}">\7</font>');
}