Hi, I have made a little snippet to change the css background color of an element depending on node_css
This is used when viewing nodes to do any modifications to the css properties. Put this at the end of the section of your page.tpl.php
<?php if( $node && $color = node_color_get_color($node) ) {
?>
<style type="text/css" media="screen">
#resultados {
background: <?php print $color ?>;
background-image: none;
}
</style>
<?php
}?>