friendica/view/theme/quattro/style.php
Fabio Comuni be2005f146 quattro: move quattro-green inside quattro folder.
Add config option to select quattro color scheme.
2012-03-30 21:21:14 +02:00

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");
}