Phppgads 2.0.7 > PhpPgAds 2.0.7 / Admin / Lib Gdcolors.inc.php

Questions? Need Help? Want to share? » PHP Forum
 
Script Name:
Phppgads 2.0.7

Download:
phppgads-2.0.7.zip

Category:
Ad Management

Archive Content:

PhpPgAds 2.0.7

PhpPgAds 2.0.7 > Admin

PhpPgAds 2.0.7 > Admin > Report Plugins

PhpPgAds 2.0.7 > Admin

PhpPgAds 2.0.7 > Admin > Images

PhpPgAds 2.0.7 > Admin > Images > Ltr

PhpPgAds 2.0.7 > Admin > Images

PhpPgAds 2.0.7 > Admin > Images > Flags

PhpPgAds 2.0.7 > Admin > Images

PhpPgAds 2.0.7 > Admin > Images > Rtl

PhpPgAds 2.0.7 > Admin > Images

PhpPgAds 2.0.7 > Admin

PhpPgAds 2.0.7 > Admin > Templates

PhpPgAds 2.0.7

PhpPgAds 2.0.7 > Cache

PhpPgAds 2.0.7 > Client

PhpPgAds 2.0.7 > Language

PhpPgAds 2.0.7 > Language > Brazilian Portuguese

PhpPgAds 2.0.7 > Language > Chinese Big5

PhpPgAds 2.0.7 > Language > Chinese Gb2312

PhpPgAds 2.0.7 > Language > Dutch

PhpPgAds 2.0.7 > Language > English

PhpPgAds 2.0.7 > Language > English Us

PhpPgAds 2.0.7 > Language > French

PhpPgAds 2.0.7 > Language > German

PhpPgAds 2.0.7 > Language > Hebrew

PhpPgAds 2.0.7 > Language > Hungarian

PhpPgAds 2.0.7 > Language > Indonesian

PhpPgAds 2.0.7 > Language > Italian

PhpPgAds 2.0.7 > Language > Korean

PhpPgAds 2.0.7 > Language > Polish

PhpPgAds 2.0.7 > Language > Portuguese

PhpPgAds 2.0.7 > Language > Russian Cp1251

PhpPgAds 2.0.7 > Language > Russian Koi8r

PhpPgAds 2.0.7 > Language > Spanish

PhpPgAds 2.0.7 > Language > Turkish

PhpPgAds 2.0.7 > Libraries

PhpPgAds 2.0.7 > Libraries > Defaults

PhpPgAds 2.0.7 > Libraries

PhpPgAds 2.0.7 > Libraries > Layerstyles

PhpPgAds 2.0.7 > Libraries > Layerstyles > Cursor

PhpPgAds 2.0.7 > Libraries > Layerstyles > Floater

PhpPgAds 2.0.7 > Libraries > Layerstyles > Geocities

PhpPgAds 2.0.7 > Libraries > Layerstyles > Geocities > Images

PhpPgAds 2.0.7 > Libraries > Layerstyles > Geocities

PhpPgAds 2.0.7 > Libraries > Layerstyles > Simple

PhpPgAds 2.0.7 > Libraries > Layerstyles > Simple > Images

PhpPgAds 2.0.7 > Libraries > Layerstyles > Simple

PhpPgAds 2.0.7 > Libraries

PhpPgAds 2.0.7 > Libraries > Deliverycache

PhpPgAds 2.0.7 > Libraries > Geotargeting

PhpPgAds 2.0.7 > Libraries > Resources

PhpPgAds 2.0.7 > Maintenance

PhpPgAds 2.0.7 > Misc

PhpPgAds 2.0.7 > Misc > Documentation

PhpPgAds 2.0.7 > Misc

PhpPgAds 2.0.7 > Misc > Fakecron

PhpPgAds 2.0.7 > Misc > Revisions

PhpPgAds 2.0.7 > Misc > Samples

PhpPgAds 2.0.7 > Misc > Samples > Xmlrpc

PhpPgAds 2.0.7 > Misc > Samples > Xmlrpc > Php

Lib Gdcolors.inc.php:


<?php // $Revision: 2.0.2.3 $

/************************************************************************/
/* phpPgAds                                                             */
/* ========                                                             */
/*                                                                      */
/* Copyright (c) 2001-2005 by the phpPgAds developers                   */
/* For more information visit: http://phppgads.sourceforge.net          */
/*                                                                      */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License.       */
/************************************************************************/



// Set HTML colors
$headercolor "#66CCFF";
$bodycolor "#000000";
$textcolor "#006666";



// Populate RGB array with colors
$RGB = array(
        
"white"         => array(0xFF, 0xFF, 0xFF),
        
"black"         => array(0x00, 0x00, 0x00),
        
"gray"          => array(0x7F, 0x7F, 0x7F),
        
"lgray"         => array(0xBF, 0xBF, 0xBF),
        
"egray"         => array(0xDD, 0xDD, 0xDD),
        
"dgray"         => array(0x3F, 0x3F, 0x3F),
        
"blue"          => array(0x00, 0x00, 0xBF),
        
"lblue"         => array(0x00, 0x00, 0xFF),
        
"dblue"         => array(0x00, 0x00, 0x7F),
        
"yellow"        => array(0xBF, 0xBF, 0x00),
        
"lyellow"       => array(0xFF, 0xFF, 0x00),
        
"dyellow"       => array(0x7F, 0x7F, 0x00),
        
"green"         => array(0x00, 0xBF, 0x00),
        
"lgreen"        => array(0x00, 0xFF, 0x00),
        
"dgreen"        => array(0x00, 0x7F, 0x00),
        
"red"           => array(0xBF, 0x00, 0x00),
        
"lred"          => array(0xFF, 0x00, 0x00),
        
"dred"          => array(0x7F, 0x00, 0x00),
        
"purple"        => array(0xBF, 0x00, 0xBF),
        
"lpurple"       => array(0xFF, 0x00, 0xFF),
        
"dpurple"       => array(0x7F, 0x00, 0x7F),
        
"gold"          => array(0xFF, 0xD7, 0x00),
        
"pink"          => array(0xFF, 0xB7, 0xC1),
        
"dpink"         => array(0xFF, 0x69, 0xB4),
        
"marine"        => array(0x7F, 0x7F, 0xFF),
        
"cyan"          => array(0x00, 0xFF, 0xFF),
        
"lcyan"         => array(0xE0, 0xFF, 0xFF),
        
"maroon"        => array(0x80, 0x00, 0x00),
        
"olive"         => array(0x80, 0x80, 0x00),
        
"navy"          => array(0x00, 0x00, 0x80),
        
"teal"          => array(0x00, 0x80, 0x80),
        
"silver"        => array(0xC0, 0xC0, 0xC0),
        
"lime"          => array(0x00, 0xFF, 0x00),
        
"khaki"         => array(0xF0, 0xE6, 0x8C),
        
"lsteelblue"    => array(0xB0, 0xC4, 0xDE),
        
"seagreen"      => array(0x3C, 0xB3, 0x71),
        
"lseagreen"     => array(0x20, 0xB2, 0xAA),
        
"skyblue"       => array(0x87, 0xCE, 0xEB),
        
"lskyblue"      => array(0x87, 0xCE, 0xFA),
        
"slateblue"     => array(0x6A, 0x5A, 0xCD),
        
"slategray"     => array(0x70, 0x80, 0x90),
        
"steelblue"     => array(0x46, 0x82, 0xB4),
        
"tan"           => array(0xD2, 0xB4, 0x8C),
        
"violet"        => array(0xEE, 0x82, 0xEE),
        
"wheat"         => array(0xF5, 0xDE, 0xB3),
        
"phpAdsClicks"  => array(153, 204, 255),
        
"phpAdsViews"   => array(0, 102, 204),
        
"phpAdsLines"   => array(0, 0, 102)
);


// Set the colors used for creating the graphs
$bgcolors       $RGB["white"];
$adviewscolors  $RGB["phpAdsViews"];
$adclickscolors $RGB["phpAdsClicks"];
$linecolors     $RGB["phpAdsLines"];
$textcolors     $RGB["black"];

?>


Other Ad Management Scripts:

WebMaster Resources Home

©RingsWorld.com