Replacement file: color.inc

<?php
// $Id: color.inc,v 1.2 2006/12/06 16:32:54 dries Exp $
// 2007-08-01 Hans-Georg Michna - Added color schemes
// and changed base font color to black for readability.

$info = array(

  // Pre-defined color schemes
  'schemes' => array(
    '#0072b9,#027ac6,#2385c2,#5ab5ee,#000000' => t('Blue Lagoon (Default)'),
    '#e0a000,#308000,#ffd030,#207000,#000000' => t('Africa'),
    '#464849,#0040e0,#2a2b2d,#5d6779,#000000' => t('Ash'),
    '#55c0e2,#d00000,#085360,#007e94,#000000' => t('Aquamarine'),
    '#d5b048,#a04000,#331900,#971702,#000000' => t('Belgian Chocolate'),
    '#3f3f3f,#336699,#6598cb,#6598cb,#000000' => t('Bluemarine'),
    '#a05000,#a04000,#ffe8b0,#a05000,#000000' => t('Caramel'),
    '#d0cb9a,#917803,#efde01,#e6fb2d,#000000' => t('Citrus Blast'),
    '#0f005c,#0020e0,#4d91ff,#1a1575,#000000' => t('Cold Day'),
    '#c9c497,#0c7a00,#03961e,#7be000,#000000' => t('Greenbeam'),
    '#989098,#a04000,#ffc840,#a00040,#000000' => t('Maasai'),
    '#ffe23d,#a9290a,#fc6d1d,#a30f42,#000000' => t('Mediterrano'),
    '#788597,#3f728d,#a9adbc,#d4d4d4,#000000' => t('Mercury'),
    '#3568cc,#0040c0,#c0d0f0,#3568cc,#000000' => t('Microsoft'),
    '#5b5fa9,#5b5faa,#0a2352,#9fa8d5,#000000' => t('Nocturnal'),
    '#7db323,#6a9915,#b5d52a,#7db323,#000000' => t('Olivia'),
    '#12020b,#b00060,#f391c6,#f41063,#000000' => t('Pink Plastic'),
    '#904020,#a00000,#600000,#e09060,#000000' => t('Rust'),
    '#b7a0ba,#c70000,#a1443a,#f21107,#000000' => t('Shiny Tomato'),
    '#18583d,#008040,#34775a,#52bf90,#000000' => t('Teal Top'),
  ),

  // Images to copy over
  'copy' => array(
    'images/menu-collapsed.gif',
    'images/menu-expanded.gif',
    'images/menu-leaf.gif',
  ),

  // Coordinates of gradient (x, y, width, height)
  'gradient' => array(0, 37, 760, 121),

  // Color areas to fill (x, y, width, height)
  'fill' => array(
    'base' => array(0, 0, 760, 568),
    'link' => array(107, 533, 41, 23),
  ),

  // Coordinates of all the theme slices (x, y, width, height)
  // with their filename as used in the stylesheet.
  'slices' => array(
    'images/body.png'                      => array(0, 37, 1, 280),
    'images/bg-bar.png'                    => array(202, 530, 76, 14),
    'images/bg-bar-white.png'              => array(202, 506, 76, 14),
    'images/bg-tab.png'                    => array(107, 533, 41, 23),
    'images/bg-navigation.png'             => array(0, 0, 7, 37),
    'images/bg-content-left.png'           => array(40, 117, 50, 352),
    'images/bg-content-right.png'          => array(510, 117, 50, 352),
    'images/bg-content.png'                => array(299, 117, 7, 200),
    'images/bg-navigation-item.png'        => array(32, 37, 17, 12),
    'images/bg-navigation-item-hover.png'  => array(54, 37, 17, 12),
    'images/gradient-inner.png'            => array(646, 307, 112, 42),

    'logo.png'                             => array(622, 51, 64, 73),
    'screenshot.png'                       => array(0, 37, 400, 240),
  ),

  // Reference color used for blending. Matches the base.png's colors.
  'blend_target' => '#ffffff',

  // Preview files
  'preview_image' => 'color/preview.png',
  'preview_css' => 'color/preview.css',

  // Base file for image generation
  'base_image' => 'color/base.png',
);