From 10f0a05c04ad14a27e336f40ad0f82aff7873810 Mon Sep 17 00:00:00 2001
From: Thijs van den Anker <thijs@capitalv.nl>
Date: Thu, 3 Oct 2013 09:42:57 +0200
Subject: [PATCH] bartik patch for testing https://drupal.org/node/585172

---
 core/themes/bartik/color/color.inc |  4 ++--
 core/themes/bartik/css/colors.css  | 44 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 46 insertions(+), 2 deletions(-)

diff --git a/core/themes/bartik/color/color.inc b/core/themes/bartik/color/color.inc
index f70450c..10e389f 100644
--- a/core/themes/bartik/color/color.inc
+++ b/core/themes/bartik/color/color.inc
@@ -30,8 +30,8 @@
         'bottom' => '#48a9e4',
         'bg' => '#ffffff',
         'sidebar' => '#f6f6f2',
-        'sidebarborders' => '#f9f9f9',
-        'footer' => '#292929',
+        'sidebarborders' => '#bacbbc',
+        'footer' => '#bac',
         'titleslogan' => '#fffeff',
         'text' => '#3b3b3b',
         'link' => '#0071B3',
diff --git a/core/themes/bartik/css/colors.css b/core/themes/bartik/css/colors.css
index 96f3877..a09f2f5 100644
--- a/core/themes/bartik/css/colors.css
+++ b/core/themes/bartik/css/colors.css
@@ -1,5 +1,49 @@
 /* ---------- Color Module Styles ----------- */
 
+/* TEST CSS FOR THE REGEX PATCH OF https://drupal.org/node/585172 */
+
+/* Change to Firehouse should:
+ - replace the background color to #1f1d1c
+ - leave the identifier in tact
+  */
+#bac {
+  background: #bac;
+}
+/* Change to Firehouse should:
+ - replace the background color to #ededed
+ - leave the identifier in tact
+  */
+#bacbbc {
+  background: #bacbbc;
+}
+/* Change to Firehouse should:
+ - replace the background color to #1f1d1c
+ - leave the identifier in tact
+  */
+#bac 
+{
+  font-size:21px;
+  background: #bac
+}
+
+/* Change to Firehouse should:
+ - change the background to #cd2d2d
+ - color-shift the color property
+  */
+#test {
+  background: #0779bf;
+  color: #abcdef;
+}
+
+/* Change to Firehouse should:
+ - color-shift the color property to something else then the color in #test as it is a link
+  */
+a.bac {
+  color:#abcdef;
+}
+
+/** END OF TEST CSS **/
+
 body,
 body.overlay {
   color: #3b3b3b;
-- 
1.8.4

