I use different predefined colors like so:
theme = {
whateverFlashColor: '#ffffaa',
whateverElseFlashColor: '#bbffaa',
whateverElseThenFlashColor: '#ffffff',
};
and use them like this
$('#element').effect("highlight", {color:theme.whateverFlashColor}, 1000);
easy :)