diff options
author | Mario <mario@mariovavti.com> | 2023-01-24 09:29:00 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-01-24 09:29:00 +0000 |
commit | cac48fc4bf2d36004dce57be0c6039460b4d2fd5 (patch) | |
tree | bcf733d42ecccb27efb7508dcc0fb25b5276a00e /view/theme/redbasic/php | |
parent | 1cad844d2ddf2bcfec34cdfb45f23e3878810147 (diff) | |
download | volse-hubzilla-cac48fc4bf2d36004dce57be0c6039460b4d2fd5.tar.gz volse-hubzilla-cac48fc4bf2d36004dce57be0c6039460b4d2fd5.tar.bz2 volse-hubzilla-cac48fc4bf2d36004dce57be0c6039460b4d2fd5.zip |
use light colored navbar for light mode - this makes the focus light schema redundant
Diffstat (limited to 'view/theme/redbasic/php')
-rw-r--r-- | view/theme/redbasic/php/style.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index aef688ef2..b58ac98d8 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -72,10 +72,10 @@ if ((!$schema) || ($schema == '---')) { //Set some defaults - we have to do this after pulling owner settings, and we have to check for each setting //individually. If we don't, we'll have problems if a user has set one, but not all options. if (! $nav_bg) - $nav_bg = 'rgba(33, 37, 41, 1)'; + $nav_bg = 'rgba(248, 249, 250, 1)'; if (! $nav_bg_dark) - $nav_bg_dark = 'rgba(0, 0, 0, 1)'; + $nav_bg_dark = 'rgba(43, 48, 53, 1)'; if (! $link_color) $link_color = '#0d6efd'; |