diff options
author | Thomas Willingham <beardyunixer@beardyunixer.com> | 2014-04-03 12:48:52 +0100 |
---|---|---|
committer | Thomas Willingham <beardyunixer@beardyunixer.com> | 2014-04-03 12:48:52 +0100 |
commit | 98788308e156173cfc49c4477bf0d12dbda88662 (patch) | |
tree | 6519cb7a759181bb5fe7182616dc904f45e532f6 /view/theme/redbasic | |
parent | d1271ca340612224cd0daa2b3f9d5a5a28f7aa22 (diff) | |
parent | 39a02d29eb5eedd80ab4c3350b49cf2cb7a4eb54 (diff) | |
download | volse-hubzilla-98788308e156173cfc49c4477bf0d12dbda88662.tar.gz volse-hubzilla-98788308e156173cfc49c4477bf0d12dbda88662.tar.bz2 volse-hubzilla-98788308e156173cfc49c4477bf0d12dbda88662.zip |
Merge pull request #393 from jeroenpraat/patch-1
Update and fix dark scheme
Diffstat (limited to 'view/theme/redbasic')
-rw-r--r-- | view/theme/redbasic/schema/dark.php | 34 |
1 files changed, 29 insertions, 5 deletions
diff --git a/view/theme/redbasic/schema/dark.php b/view/theme/redbasic/schema/dark.php index bd3642914..24ed4f418 100644 --- a/view/theme/redbasic/schema/dark.php +++ b/view/theme/redbasic/schema/dark.php @@ -1,10 +1,34 @@ <?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 (! $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"; |