Something like this perhaps:
Code:
<?php header("Content-type: text/css");
if (!isset($backgroundcolor))
{
$backgroundcolor = "#EE7600";
}
if (!isset($textcolor))
{
$textcolor = " #0033FF";
}
?>
body {
background:<?php echo $backgroundcolor;?>;
color:<?php echo $textcolor?>;
}