blob: 889ec1530e449c6fcecb2b05c354a66fc239049b (
plain) (
tree)
|
|
<?php
$color = get_pconfig(local_user(), "quattro","color");
if ($color===false) $color="dark";
if (file_exists("$THEMEPATH/$color/style.css")){
echo file_get_contents("$THEMEPATH/$color/style.css");
}
|