color.inc

  1. 7.x drupal-7.x/themes/garland/color/color.inc
  2. 7.x drupal-7.x/themes/bartik/color/color.inc
  3. 6.x drupal-6.x/themes/garland/color/color.inc
  4. 6.x drupal-6.x/themes/garland/minnelli/color/color.inc

File

drupal-6.x/themes/garland/color/color.inc
View source
  1. <?php
  2. $info = array(
  3. // Pre-defined color schemes.
  4. 'schemes' => array(
  5. '#0072b9,#027ac6,#2385c2,#5ab5ee,#494949' => t('Blue Lagoon (Default)'),
  6. '#464849,#2f416f,#2a2b2d,#5d6779,#494949' => t('Ash'),
  7. '#55c0e2,#000000,#085360,#007e94,#696969' => t('Aquamarine'),
  8. '#d5b048,#6c420e,#331900,#971702,#494949' => t('Belgian Chocolate'),
  9. '#3f3f3f,#336699,#6598cb,#6598cb,#000000' => t('Bluemarine'),
  10. '#d0cb9a,#917803,#efde01,#e6fb2d,#494949' => t('Citrus Blast'),
  11. '#0f005c,#434f8c,#4d91ff,#1a1575,#000000' => t('Cold Day'),
  12. '#c9c497,#0c7a00,#03961e,#7be000,#494949' => t('Greenbeam'),
  13. '#ffe23d,#a9290a,#fc6d1d,#a30f42,#494949' => t('Mediterrano'),
  14. '#788597,#3f728d,#a9adbc,#d4d4d4,#707070' => t('Mercury'),
  15. '#5b5fa9,#5b5faa,#0a2352,#9fa8d5,#494949' => t('Nocturnal'),
  16. '#7db323,#6a9915,#b5d52a,#7db323,#191a19' => t('Olivia'),
  17. '#12020b,#1b1a13,#f391c6,#f41063,#898080' => t('Pink Plastic'),
  18. '#b7a0ba,#c70000,#a1443a,#f21107,#515d52' => t('Shiny Tomato'),
  19. '#18583d,#1b5f42,#34775a,#52bf90,#2d2d2d' => t('Teal Top'),
  20. ),
  21. // Images to copy over.
  22. 'copy' => array(
  23. 'images/menu-collapsed.gif',
  24. 'images/menu-collapsed-rtl.gif',
  25. 'images/menu-expanded.gif',
  26. 'images/menu-leaf.gif',
  27. ),
  28. // CSS files (excluding @import) to rewrite with new color scheme.
  29. 'css' => array(
  30. 'style.css',
  31. ),
  32. // Coordinates of gradient (x, y, width, height).
  33. 'gradient' => array(0, 37, 760, 121),
  34. // Color areas to fill (x, y, width, height).
  35. 'fill' => array(
  36. 'base' => array(0, 0, 760, 568),
  37. 'link' => array(107, 533, 41, 23),
  38. ),
  39. // Coordinates of all the theme slices (x, y, width, height)
  40. // with their filename as used in the stylesheet.
  41. 'slices' => array(
  42. 'images/body.png' => array(0, 37, 1, 280),
  43. 'images/bg-bar.png' => array(202, 530, 76, 14),
  44. 'images/bg-bar-white.png' => array(202, 506, 76, 14),
  45. 'images/bg-tab.png' => array(107, 533, 41, 23),
  46. 'images/bg-navigation.png' => array(0, 0, 7, 37),
  47. 'images/bg-content-left.png' => array(40, 117, 50, 352),
  48. 'images/bg-content-right.png' => array(510, 117, 50, 352),
  49. 'images/bg-content.png' => array(299, 117, 7, 200),
  50. 'images/bg-navigation-item.png' => array(32, 37, 17, 12),
  51. 'images/bg-navigation-item-hover.png' => array(54, 37, 17, 12),
  52. 'images/gradient-inner.png' => array(646, 307, 112, 42),
  53. 'logo.png' => array(622, 51, 64, 73),
  54. 'screenshot.png' => array(0, 37, 400, 240),
  55. ),
  56. // Reference color used for blending. Matches the base.png's colors.
  57. 'blend_target' => '#ffffff',
  58. // Preview files.
  59. 'preview_image' => 'color/preview.png',
  60. 'preview_css' => 'color/preview.css',
  61. // Base file for image generation.
  62. 'base_image' => 'color/base.png',
  63. );