Skip to content
Snippets Groups Projects
Commit 98be9d23 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #1164792 by tim.plunkett: when attempting to change blue to another...

- Patch #1164792 by tim.plunkett: when attempting to change blue to another color, users often change the first item on the list.
parent 1ee1269b
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -6,86 +6,86 @@ ...@@ -6,86 +6,86 @@
$info = array( $info = array(
// Available colors and color labels used in theme. // Available colors and color labels used in theme.
'fields' => array( 'fields' => array(
'bg' => t('Main background'),
'link' => t('Link color'),
'top' => t('Header top'), 'top' => t('Header top'),
'bottom' => t('Header bottom'), 'bottom' => t('Header bottom'),
'text' => t('Text color'), 'bg' => t('Main background'),
'sidebar' => t('Sidebar background'), 'sidebar' => t('Sidebar background'),
'sidebarborders' => t('Sidebar borders'), 'sidebarborders' => t('Sidebar borders'),
'footer' => t('Footer background'), 'footer' => t('Footer background'),
'titleslogan' => t('Title and slogan'), 'titleslogan' => t('Title and slogan'),
'text' => t('Text color'),
'link' => t('Link color'),
), ),
// Pre-defined color schemes. // Pre-defined color schemes.
'schemes' => array( 'schemes' => array(
'default' => array( 'default' => array(
'title' => t('Blue Lagoon (default)'), 'title' => t('Blue Lagoon (default)'),
'colors' => array( 'colors' => array(
'bg' => '#ffffff',
'link' => '#0071B3',
'top' => '#0779bf', 'top' => '#0779bf',
'bottom' => '#48a9e4', 'bottom' => '#48a9e4',
'text' => '#3b3b3b', 'bg' => '#ffffff',
'sidebar' => '#f6f6f2', 'sidebar' => '#f6f6f2',
'sidebarborders' => '#f9f9f9', 'sidebarborders' => '#f9f9f9',
'footer' => '#292929', 'footer' => '#292929',
'titleslogan' => '#fffeff', 'titleslogan' => '#fffeff',
'text' => '#3b3b3b',
'link' => '#0071B3',
), ),
), ),
'firehouse' => array( 'firehouse' => array(
'title' => t('Firehouse'), 'title' => t('Firehouse'),
'colors' => array( 'colors' => array(
'bg' => '#ffffff',
'link' => '#d6121f',
'top' => '#cd2d2d', 'top' => '#cd2d2d',
'bottom' => '#cf3535', 'bottom' => '#cf3535',
'text' => '#3b3b3b', 'bg' => '#ffffff',
'sidebar' => '#f1f4f0', 'sidebar' => '#f1f4f0',
'sidebarborders' => '#ededed', 'sidebarborders' => '#ededed',
'footer' => '#1f1d1c', 'footer' => '#1f1d1c',
'titleslogan' => '#fffeff', 'titleslogan' => '#fffeff',
'text' => '#3b3b3b',
'link' => '#d6121f',
), ),
), ),
'ice' => array( 'ice' => array(
'title' => t('Ice'), 'title' => t('Ice'),
'colors' => array( 'colors' => array(
'bg' => '#ffffff',
'link' => '#019dbf',
'top' => '#d0d0d0', 'top' => '#d0d0d0',
'bottom' => '#c2c4c5', 'bottom' => '#c2c4c5',
'text' => '#4a4a4a', 'bg' => '#ffffff',
'sidebar' => '#ffffff', 'sidebar' => '#ffffff',
'sidebarborders' => '#cccccc', 'sidebarborders' => '#cccccc',
'footer' => '#24272c', 'footer' => '#24272c',
'titleslogan' => '#000000', 'titleslogan' => '#000000',
'text' => '#4a4a4a',
'link' => '#019dbf',
), ),
), ),
'plum' => array( 'plum' => array(
'title' => t('Plum'), 'title' => t('Plum'),
'colors' => array( 'colors' => array(
'bg' => '#fffdf7',
'link' => '#9d408d',
'top' => '#4c1c58', 'top' => '#4c1c58',
'bottom' => '#593662', 'bottom' => '#593662',
'text' => '#301313', 'bg' => '#fffdf7',
'sidebar' => '#edede7', 'sidebar' => '#edede7',
'sidebarborders' => '#e7e7e7', 'sidebarborders' => '#e7e7e7',
'footer' => '#2c2c28', 'footer' => '#2c2c28',
'titleslogan' => '#ffffff', 'titleslogan' => '#ffffff',
'text' => '#301313',
'link' => '#9d408d',
), ),
), ),
'slate' => array( 'slate' => array(
'title' => t('Slate'), 'title' => t('Slate'),
'colors' => array( 'colors' => array(
'bg' => '#ffffff',
'link' => '#0073b6',
'top' => '#4a4a4a', 'top' => '#4a4a4a',
'bottom' => '#4e4e4e', 'bottom' => '#4e4e4e',
'text' => '#3b3b3b', 'bg' => '#ffffff',
'sidebar' => '#ffffff', 'sidebar' => '#ffffff',
'sidebarborders' => '#d0d0d0', 'sidebarborders' => '#d0d0d0',
'footer' => '#161617', 'footer' => '#161617',
'titleslogan' => '#ffffff', 'titleslogan' => '#ffffff',
'text' => '#3b3b3b',
'link' => '#0073b6',
), ),
), ),
), ),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment