| [ Index ] |
PHP Cross Reference of Drupal 6 (yi-drupal) |
[Summary view] [Print] [Text view]
1 <?php 2 3 // $Id: color.inc,v 1.7.2.6 2009/05/10 15:19:10 sign Exp $ 4 5 /** 6 * @file 7 * The color settings 8 */ 9 10 $info = array( 11 12 // Pre-defined color schemes. 13 'schemes' => array( 14 '#b2c8d3,#027ac6,#313332,#424446,#494949' => t('Glass (Default)'), 15 '#464849,#2f416f,#2a2b2d,#5d6779,#494949' => t('Ash'), 16 '#55c0e2,#000000,#085360,#007e94,#696969' => t('Aquamarine'), 17 '#d5b048,#6c420e,#331900,#971702,#494949' => t('Belgian Chocolate'), 18 '#3f3f3f,#336699,#6598cb,#6598cb,#000000' => t('Bluemarine'), 19 '#d0cb9a,#917803,#efde01,#e6fb2d,#494949' => t('Citrus Blast'), 20 '#0f005c,#434f8c,#4d91ff,#1a1575,#000000' => t('Cold Day'), 21 '#c9c497,#0c7a00,#03961e,#7be000,#494949' => t('Greenbeam'), 22 '#ffe23d,#a9290a,#fc6d1d,#a30f42,#494949' => t('Mediterrano'), 23 '#788597,#3f728d,#a9adbc,#d4d4d4,#707070' => t('Mercury'), 24 '#5b5fa9,#5b5faa,#0a2352,#9fa8d5,#494949' => t('Nocturnal'), 25 '#7db323,#6a9915,#b5d52a,#7db323,#191a19' => t('Olivia'), 26 '#12020b,#1b1a13,#f391c6,#f41063,#898080' => t('Pink Plastic'), 27 '#b7a0ba,#c70000,#a1443a,#f21107,#515d52' => t('Shiny Tomato'), 28 '#18583d,#1b5f42,#34775a,#52bf90,#2d2d2d' => t('Teal Top'), 29 ), 30 31 // CSS files (excluding @import) to rewrite with new color scheme. 32 'css' => array( 33 'style.css', 34 ), 35 36 // Coordinates of gradient (x, y, width, height). 37 'gradient' => array(0, 0, 900, 28), 38 39 // Color areas to fill (x, y, width, height). 40 'fill' => array( 41 'base' => array(0, 29, 900, 472), 42 'link' => array(97, 210, 371, 56), 43 ), 44 'slices' => array( 45 'images/header_bg.png' => array(40, 0, 1, 28), 46 'images/panel/panel_bg.png' => array(276, 0, 341, 25), 47 'images/panel/panel_content_bg.png' => array(276, 0, 1, 1), 48 'images/panel/panel_left.png' => array(235, 0, 7, 25), 49 'images/panel/panel_open.png' => array(244, 4, 16, 16), 50 'images/panel/panel_close.png' => array(260, 4, 16, 16), 51 'images/navigation_bg.png' => array(10, 29, 1, 64), 52 'images/tabs/tableft_big.png' => array(61, 31, 5, 62), 53 'images/tabs/tabright_big.png' => array(65, 31, 360, 62), 54 'images/tabs/tableft.png' => array(451, 45, 5, 48), 55 'images/tabs/tabright.png' => array(455, 45, 360, 48), 56 'images/tabs/tableft_small.png' => array(451, 143, 5, 26), 57 'images/tabs/tabright_small.png' => array(455, 143, 360, 26), 58 'images/buttons/blue-button.png' => array(97, 236, 369, 80), 59 'images/gohome.png' => array(7, 6, 18, 21), 60 'images/window/tl.gif' => array(246, 133, 10, 10), 61 'images/window/tr.gif' => array(256, 133, 10, 10), 62 'images/window/bl.gif' => array(246, 143, 10, 10), 63 'images/window/br.gif' => array(256, 143, 10, 10), 64 'images/window/b.gif' => array(256, 143, 1, 10), 65 'images/window/t.gif' => array(256, 133, 1, 10), 66 'images/window/l.gif' => array(246, 143, 10, 1), 67 'images/window/r.gif' => array(256, 143, 10, 1), 68 'images/content_bg.gif' => array(255, 142, 1, 1), 69 'screenshot.png' => array(0, 37, 400, 240), 70 ), 71 72 // Images to copy over. 73 'copy' => array( 74 ), 75 76 // Reference color used for blending. Matches the base.png's colors. 77 'blend_target' => '#ffffff', 78 79 // Preview files. 80 'preview_image' => 'color/preview.png', 81 'preview_css' => 'color/preview.css', 82 83 // Base file for image generation. 84 'base_image' => 'color/base.png', 85 );
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Mon Jul 9 18:01:44 2012 | Cross-referenced by PHPXref 0.7 |