How to overwrite iris color pallates from theme to plugin

You must make sure that your styles are hooked into the head of the site after other styles, so they will override them. You do this by putting them late in the action queue like this:

add_action ('wp_head', 'your_output_function', 9999);