aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/redbasic/php/style.php
diff options
context:
space:
mode:
authortuscanhobbit <tuscanhobbit@users.noreply.github.com>2013-11-23 20:04:09 +0100
committertuscanhobbit <tuscanhobbit@users.noreply.github.com>2013-11-23 20:04:09 +0100
commitd126c2bcaae4c25eda03b99b4422398ad781c582 (patch)
tree93bd14ee31254d27e0b8310c062721f0428a31b5 /view/theme/redbasic/php/style.php
parent2c6e1b7aee2928c077bc090b1c4fe65c599d5d12 (diff)
downloadvolse-hubzilla-d126c2bcaae4c25eda03b99b4422398ad781c582.tar.gz
volse-hubzilla-d126c2bcaae4c25eda03b99b4422398ad781c582.tar.bz2
volse-hubzilla-d126c2bcaae4c25eda03b99b4422398ad781c582.zip
redbasic nav bar gradient is now similar to the red shade in the logo
Diffstat (limited to 'view/theme/redbasic/php/style.php')
-rw-r--r--view/theme/redbasic/php/style.php14
1 files changed, 6 insertions, 8 deletions
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php
index 1eb5abfbb..9956ccd31 100644
--- a/view/theme/redbasic/php/style.php
+++ b/view/theme/redbasic/php/style.php
@@ -114,22 +114,20 @@
// Nav colours have nested values, so we have to define the actual variables
// used in the CSS from the higher level "red", "black", etc here
if ($nav_colour == "red") {
- $nav_bg_1 = "#f88";
- $nav_bg_2 = "#b00";
- $nav_bg_3 = "#f00";
- $nav_bg_4 = "#b00";
- $search_background = '#FFDDDD';
+ $nav_bg_1 = $nav_bg_3 = "#ba002f";
+ $nav_bg_2 = $nav_bg_4 = "#ad002c";
+ $search_background = "#EEEEEE";
$active_colour = '#444444';
}
if ($nav_colour == "black") {
- $nav_bg_1 = $nav_bg_3 = "#000";
- $nav_bg_2 = $nav_bg_4 = "#222";
+ $nav_bg_1 = $nav_bg_3 = "#000";
+ $nav_bg_2 = $nav_bg_4 = "#222";
$search_background = '#EEEEEE';
$active_colour = '#AAAAAA';
}
if ($nav_colour == "silver") {
- $nav_bg_1 = $nav_bg_2 = $nav_bg_3 = $nav_bg_4 = "silver";
+ $nav_bg_1 = $nav_bg_2 = $nav_bg_3 = $nav_bg_4 = "silver";
$search_background = '#EEEEEE';
}