be2005f146
Add config option to select quattro color scheme.
10 lines
214 B
PHP
10 lines
214 B
PHP
<?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");
|
|
}
|
|
|