Look: Gestion des couleurs des graphiques dans les themes

This commit is contained in:
Laurent Destailleur
2006-08-13 15:19:33 +00:00
parent 2f428a9048
commit 52f1b358a3
7 changed files with 278 additions and 307 deletions

View File

@@ -1,6 +1,6 @@
<?PHP
/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004 Laurent Destailleur <eldy@users.sourceforge.net>
/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004-2006 Laurent Destailleur <eldy@users.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
@@ -18,15 +18,19 @@
*
* $Id$
* $Source$
*
*/
/*!
\file htdocs/theme/eldy/graph-color.php
\brief Fichier de d<>claration des couleurs pour les graphiques
\version $Revision$
/**
\file htdocs/theme/dev/graph-color.php
\brief Fichier de d<>claration des couleurs pour les graphiques
\ingroup core
\version $Revision$
*/
$theme_bgcolor = array(224,224,224);
global $theme_bordercolor, $theme_datacolor, $theme_bgcolor, $theme_bgcoloronglet;
$theme_bordercolor = array(235,235,224);
$theme_datacolor = array(array(120,130,150), array(160,160,180), array(190,190,220));
$theme_bgcolor = array(hexdec('F4'),hexdec('F4'),hexdec('F4'));
$theme_bgcoloronglet = array(hexdec('DC'),hexdec('DC'),hexdec('D3'));
?>