diff options
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', |