summaryrefslogtreecommitdiff
path: root/themes
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2011-05-30 20:48:57 -0700
committerwebchick <webchick@24967.no-reply.drupal.org>2011-05-30 20:48:57 -0700
commitd2bcc21682899006018a408b1966eff8ccbdb386 (patch)
treeb3365bad3e986aa7dabb37ec1cc21203f85775b9 /themes
parent57d40215f82c4bc280456d3831b652c1ff9fdf90 (diff)
downloadbrdo-d2bcc21682899006018a408b1966eff8ccbdb386.tar.gz
brdo-d2bcc21682899006018a408b1966eff8ccbdb386.tar.bz2
Issue #1164792 by tim.plunkett: Re-order Bartik colour list according to visual order.
Diffstat (limited to 'themes')
-rw-r--r--themes/bartik/color/color.inc36
1 files changed, 18 insertions, 18 deletions
diff --git a/themes/bartik/color/color.inc b/themes/bartik/color/color.inc
index fa323edad..7c29f50bc 100644
--- a/themes/bartik/color/color.inc
+++ b/themes/bartik/color/color.inc
@@ -6,86 +6,86 @@ drupal_add_js(array('color' => array('logo' => theme_get_setting('logo', 'bartik
$info = array(
// Available colors and color labels used in theme.
'fields' => array(
- 'bg' => t('Main background'),
- 'link' => t('Link color'),
'top' => t('Header top'),
'bottom' => t('Header bottom'),
- 'text' => t('Text color'),
+ 'bg' => t('Main background'),
'sidebar' => t('Sidebar background'),
'sidebarborders' => t('Sidebar borders'),
'footer' => t('Footer background'),
'titleslogan' => t('Title and slogan'),
+ 'text' => t('Text color'),
+ 'link' => t('Link color'),
),
// Pre-defined color schemes.
'schemes' => array(
'default' => array(
'title' => t('Blue Lagoon (default)'),
'colors' => array(
- 'bg' => '#ffffff',
- 'link' => '#0071B3',
'top' => '#0779bf',
'bottom' => '#48a9e4',
- 'text' => '#3b3b3b',
+ 'bg' => '#ffffff',
'sidebar' => '#f6f6f2',
'sidebarborders' => '#f9f9f9',
'footer' => '#292929',
'titleslogan' => '#fffeff',
+ 'text' => '#3b3b3b',
+ 'link' => '#0071B3',
),
),
'firehouse' => array(
'title' => t('Firehouse'),
'colors' => array(
- 'bg' => '#ffffff',
- 'link' => '#d6121f',
'top' => '#cd2d2d',
'bottom' => '#cf3535',
- 'text' => '#3b3b3b',
+ 'bg' => '#ffffff',
'sidebar' => '#f1f4f0',
'sidebarborders' => '#ededed',
'footer' => '#1f1d1c',
'titleslogan' => '#fffeff',
+ 'text' => '#3b3b3b',
+ 'link' => '#d6121f',
),
),
'ice' => array(
'title' => t('Ice'),
'colors' => array(
- 'bg' => '#ffffff',
- 'link' => '#019dbf',
'top' => '#d0d0d0',
'bottom' => '#c2c4c5',
- 'text' => '#4a4a4a',
+ 'bg' => '#ffffff',
'sidebar' => '#ffffff',
'sidebarborders' => '#cccccc',
'footer' => '#24272c',
'titleslogan' => '#000000',
+ 'text' => '#4a4a4a',
+ 'link' => '#019dbf',
),
),
'plum' => array(
'title' => t('Plum'),
'colors' => array(
- 'bg' => '#fffdf7',
- 'link' => '#9d408d',
'top' => '#4c1c58',
'bottom' => '#593662',
- 'text' => '#301313',
+ 'bg' => '#fffdf7',
'sidebar' => '#edede7',
'sidebarborders' => '#e7e7e7',
'footer' => '#2c2c28',
'titleslogan' => '#ffffff',
+ 'text' => '#301313',
+ 'link' => '#9d408d',
),
),
'slate' => array(
'title' => t('Slate'),
'colors' => array(
- 'bg' => '#ffffff',
- 'link' => '#0073b6',
'top' => '#4a4a4a',
'bottom' => '#4e4e4e',
- 'text' => '#3b3b3b',
+ 'bg' => '#ffffff',
'sidebar' => '#ffffff',
'sidebarborders' => '#d0d0d0',
'footer' => '#161617',
'titleslogan' => '#ffffff',
+ 'text' => '#3b3b3b',
+ 'link' => '#0073b6',
),
),
),