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