color.inc 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. // $Id: color.inc,v 1.1 2006/10/29 13:17:38 unconed Exp $
  3. $info = array(
  4. // Pre-defined color schemes
  5. 'schemes' => array(
  6. '#0072b9,#027ac6,#2385c2,#5ab5ee,#494949' => t('Blue Lagoon (Default)'),
  7. '#d5b048,#6c420e,#331900,#971702,#494949' => t('Belgian Chocolate'),
  8. '#d0cb9a,#917803,#efde01,#e6fb2d,#494949' => t('Citrus Blast'),
  9. '#c9c497,#0c7a00,#03961e,#7be000,#494949' => t('Greenbeam'),
  10. '#ffe23d,#a9290a,#fc6d1d,#a30f42,#494949' => t('Mediterrano'),
  11. '#788597,#3f728d,#a9adbc,#d4d4d4,#707070' => t('Mercury'),
  12. '#666993,#85000f,#960335,#fb2d28,#696969' => t('Red Velour'),
  13. ),
  14. // Images to copy over
  15. 'copy' => array(
  16. 'images/menu-collapsed.gif',
  17. 'images/menu-expanded.gif',
  18. 'images/menu-leaf.gif',
  19. ),
  20. // Coordinates of gradient (x, y, width, height)
  21. 'gradient' => array(0, 37, 760, 121),
  22. // Color areas to fill (x, y, width, height)
  23. 'fill' => array(
  24. 'base' => array(0, 0, 760, 568),
  25. 'link' => array(107, 533, 41, 23),
  26. ),
  27. // Coordinates of all the theme slices (x, y, width, height)
  28. // with their filename as used in the stylesheet.
  29. 'slices' => array(
  30. 'images/body.png' => array(0, 37, 1, 280),
  31. 'images/bg-bar.png' => array(202, 530, 76, 14),
  32. 'images/bg-bar-white.png' => array(202, 506, 76, 14),
  33. 'images/bg-tab.png' => array(107, 533, 41, 23),
  34. 'images/bg-navigation.png' => array(0, 0, 7, 37),
  35. 'images/bg-content-left.png' => array(40, 117, 50, 352),
  36. 'images/bg-content-right.png' => array(510, 117, 50, 352),
  37. 'images/bg-content.png' => array(299, 117, 7, 200),
  38. 'images/bg-navigation-item.png' => array(32, 37, 17, 12),
  39. 'images/bg-navigation-item-hover.png' => array(54, 37, 17, 12),
  40. 'images/gradient-inner.png' => array(646, 307, 112, 42),
  41. 'logo.png' => array(622, 51, 64, 73),
  42. 'screenshot.png' => array(0, 37, 400, 240),
  43. ),
  44. // Reference color used for blending. Matches the base.png's colors.
  45. 'blend_target' => '#ffffff',
  46. // Preview files
  47. 'preview_image' => 'color/preview.png',
  48. 'preview_css' => 'color/preview.css',
  49. // Base file for image generation
  50. 'base_image' => 'color/base.png',
  51. );