From 9e7f617e78bceb8db4df1a1168dd7ded9a89dcde Mon Sep 17 00:00:00 2001 From: webchick <drupal@webchick.net> Date: Fri, 18 Jul 2014 11:04:04 -0400 Subject: [PATCH] Issue #2125621 by davidhernandez, mgifford, jessebeach, mparker17, anandps: Fixed Contrast between title/slogan and header is too low. --- core/themes/bartik/color/color.inc | 4 ++-- core/themes/bartik/css/colors.css | 14 +++++++------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/core/themes/bartik/color/color.inc b/core/themes/bartik/color/color.inc index 1313afdf54d0..251c0fc4afd9 100644 --- a/core/themes/bartik/color/color.inc +++ b/core/themes/bartik/color/color.inc @@ -28,8 +28,8 @@ 'default' => array( 'title' => t('Blue Lagoon (default)'), 'colors' => array( - 'top' => '#0779bf', - 'bottom' => '#48a9e4', + 'top' => '#055a8e', + 'bottom' => '#1d84c3', 'bg' => '#ffffff', 'sidebar' => '#f6f6f2', 'sidebarborders' => '#f9f9f9', diff --git a/core/themes/bartik/css/colors.css b/core/themes/bartik/css/colors.css index 324215a50079..87fac5555f75 100644 --- a/core/themes/bartik/css/colors.css +++ b/core/themes/bartik/css/colors.css @@ -20,13 +20,13 @@ body { border-bottom: 1px solid #ffffff; } #header { - background-color: #48a9e4; - background-image: -moz-linear-gradient(top, #0779bf 0%, #48a9e4 100%); - background-image: -ms-linear-gradient(top, #0779bf 0%, #48a9e4 100%); - background-image: -o-linear-gradient(top, #0779bf 0%, #48a9e4 100%); - background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #0779bf), color-stop(1, #48a9e4)); - background-image: -webkit-linear-gradient(top, #0779bf 0%, #48a9e4 100%); - background-image: linear-gradient(top, #0779bf 0%, #48a9e4 100%); + background-color: #1d84c3; + background-image: -moz-linear-gradient(to bottom, #055a8e 0%, #1d84c3 100%); + background-image: -ms-linear-gradient(to bottom, #055a8e 0%, #1d84c3 100%); + background-image: -o-linear-gradient(to bottom, #055a8e 0%, #1d84c3 100%); + background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0.7, #055a8e), color-stop(1, #1d84c3)); + background-image: -webkit-linear-gradient(to bottom, #055a8e 0%, #1d84c3 100%); + background-image: linear-gradient(to bottom, #055a8e 0%, #1d84c3 100%); } a, .link { -- GitLab