Hi,
machs doch einfach in php.
// farbschema1.php
$dunkel = "#36a4af";
$mittel = "#B0E0E6";
$hell = "#dff2f4";
-------------------------------
// farbschema2.php
$dunkel = "#000";
$mittel = "#aaa";
$hell = "#fff";
-------------------------------
// css.php
header("Content-Type: text/css");
// auswahl eines farbschemas und einbinden
echo ".haupthinter {
text-align:center;
background-color:$hell;
border-color:$dunkel;
border-width:0px 0px 2px 0px;
border-style:solid;}";
-------------------------------
// deine scripte
<link rel="stylesheet" type="text/css" href="css.php">
MfG