diff options
author | jeroenpraat <jeroenpraat@xs4all.nl> | 2014-04-03 13:32:39 +0200 |
---|---|---|
committer | jeroenpraat <jeroenpraat@xs4all.nl> | 2014-04-03 13:32:39 +0200 |
commit | a65bf5beee1f22dff17c28e7567fa0090269a17d (patch) | |
tree | ef0ae4c4018160fed816e003f81e0d4dbbf47f8b /view/theme/redbasic/schema/dark.php | |
parent | d1271ca340612224cd0daa2b3f9d5a5a28f7aa22 (diff) | |
download | volse-hubzilla-a65bf5beee1f22dff17c28e7567fa0090269a17d.tar.gz volse-hubzilla-a65bf5beee1f22dff17c28e7567fa0090269a17d.tar.bz2 volse-hubzilla-a65bf5beee1f22dff17c28e7567fa0090269a17d.zip |
Update and fix dark scheme
Updated the dark scheme as far as possible. Some items do not have a string, so they can't be themed. A dark derived theme would probably better.
Diffstat (limited to 'view/theme/redbasic/schema/dark.php')
-rw-r--r-- | view/theme/redbasic/schema/dark.php | 36 |
1 files changed, 31 insertions, 5 deletions
diff --git a/view/theme/redbasic/schema/dark.php b/view/theme/redbasic/schema/dark.php index bd3642914..e7b143d32 100644 --- a/view/theme/redbasic/schema/dark.php +++ b/view/theme/redbasic/schema/dark.php @@ -1,10 +1,36 @@ <?php - if (! $nav_colour) - $nav_colour = "black"; + if (! $nav_bg) + $nav_bg = "#000000"; + if (! $nav_gradient_top) + $nav_gradient_top = "#000000"; + if (! $nav_gradient_bottom) + $nav_gradient_bottom = "#000000"; + if (! $nav_active_gradient_top) + $nav_active_gradient_top = "#333333"; + if (! $nav_active_gradient_bottom) + $nav_active_gradient_bottom = "#111111"; + if (! $nav_bd) + $nav_bd = "#111111"; + if (! $nav_icon_colour) + $nav_icon_colour = "#999999"; + if (! $nav_active_icon_colour) + $nav_active_icon_colour = "#ffffff"; + if (! $link_colour) + $link_colour = "#ffffff"; + if (! $banner_colour) + $banner_colour = "#999999"; + if (! $search_background) + $search_background = "#999999"; if (! $bgcolour) - $bgcolour = '#010101'; + $bgcolour = "#111111"; + if (! $background_image) + $background_image =''; if (! $item_colour) - $item_colour = '#111'; + $item_colour = "#111111"; + if (! $toolicon_colour) + $toolicon_colour = '#999999'; + if (! $toolicon_activecolour) + $toolicon_activecolour = '#ffffff'; if (! $font_colour) - $font_colour = '#fff'; + $font_colour = "#cccccc"; |