diff options
author | Thomas Willingham <founder@kakste.com> | 2013-02-20 20:44:34 +0000 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2013-02-20 20:44:34 +0000 |
commit | fffaeb09ea622c03f13172d84e8b6a558dd704c0 (patch) | |
tree | b9aeffb143deef7e8d983d7f5d6ff6b60c818149 /view/theme | |
parent | 3964625fa2c0cdedb7abea566139470d2981c0a1 (diff) | |
download | volse-hubzilla-fffaeb09ea622c03f13172d84e8b6a558dd704c0.tar.gz volse-hubzilla-fffaeb09ea622c03f13172d84e8b6a558dd704c0.tar.bz2 volse-hubzilla-fffaeb09ea622c03f13172d84e8b6a558dd704c0.zip |
Ugh, not enough caffeine.
Diffstat (limited to 'view/theme')
-rw-r--r-- | view/theme/redbasic/php/config.php | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/view/theme/redbasic/php/config.php b/view/theme/redbasic/php/config.php index 8c3269bd8..9afc010d7 100644 --- a/view/theme/redbasic/php/config.php +++ b/view/theme/redbasic/php/config.php @@ -88,11 +88,15 @@ function redbasic_form(&$a, $font_size, $line_height, $colour, $shadow, $navcolo '12.5' => '12.5', '12' => '12', ); - $colour_scheme = array( - 'redbasic' => 'light', - 'fancyred' => 'dark', + $colours = array( + 'light' => 'light', + 'dark' => 'dark', + ); + + $colour_schemes = array( + 'redbasic' => 'redbasic', + 'fancyred' => 'fancyred', ); - $shadows = array( 'true' => 'Yes', 'false' => 'No', |