Cleaned up formating, added option for special logos for each theme

This commit is contained in:
jengo 2001-05-08 08:48:12 +00:00
parent e9f9189cd9
commit dfbc5ec635
20 changed files with 767 additions and 663 deletions

View File

@ -11,36 +11,37 @@
/* $Id$ */ /* $Id$ */
$phpgw_info["theme"]["bg_color"]= "FFFFFF"; $phpgw_info['theme']['bg_color']= 'FFFFFF';
$phpgw_info["theme"]["bg_text"]= "000000"; $phpgw_info['theme']['bg_text']= '000000';
$phpgw_info["theme"]["vlink"]= "blue"; $phpgw_info['theme']['vlink']= 'blue';
$phpgw_info["theme"]["alink"]= "red"; $phpgw_info['theme']['alink']= 'red';
$phpgw_info["theme"]["link"]= "blue"; $phpgw_info['theme']['link']= 'blue';
$phpgw_info["theme"]["row_on"]= "DDDDDD"; $phpgw_info['theme']['row_on']= 'DDDDDD';
$phpgw_info["theme"]["row_off"]= "EEEEEE"; $phpgw_info['theme']['row_off']= 'EEEEEE';
$phpgw_info["theme"]["row_text"]= "000000"; $phpgw_info['theme']['row_text']= '000000';
$phpgw_info["theme"]["th_bg"]= "D3DCE3"; $phpgw_info['theme']['th_bg']= 'D3DCE3';
$phpgw_info["theme"]["th_text"]= "000000"; $phpgw_info['theme']['th_text']= '000000';
$phpgw_info["theme"]["navbar_bg"]= "000000"; $phpgw_info['theme']['navbar_bg'] = '000000';
$phpgw_info["theme"]["navbar_text"]= "000000"; $phpgw_info['theme']['special_logo'] = 'logo_000000.gif';
$phpgw_info["theme"]["table_bg"]= "9999FF"; $phpgw_info['theme']['navbar_text']= '000000';
$phpgw_info["theme"]["table_text"]= "000000"; $phpgw_info['theme']['table_bg']= '9999FF';
$phpgw_info["theme"]["font"]= "Arial, Helvetica, san-serif"; $phpgw_info['theme']['table_text']= '000000';
$phpgw_info["theme"]["bg01"]= "dadada"; $phpgw_info['theme']['font']= 'Arial, Helvetica, san-serif';
$phpgw_info["theme"]["bg02"]= "dad0d0"; $phpgw_info['theme']['bg01']= 'dadada';
$phpgw_info["theme"]["bg03"]= "dacaca"; $phpgw_info['theme']['bg02']= 'dad0d0';
$phpgw_info["theme"]["bg04"]= "dac0c0"; $phpgw_info['theme']['bg03']= 'dacaca';
$phpgw_info["theme"]["bg05"]= "dababa"; $phpgw_info['theme']['bg04']= 'dac0c0';
$phpgw_info["theme"]["bg06"]= "dab0b0"; $phpgw_info['theme']['bg05']= 'dababa';
$phpgw_info["theme"]["bg07"]= "daaaaa"; $phpgw_info['theme']['bg06']= 'dab0b0';
$phpgw_info["theme"]["bg08"]= "da9090"; $phpgw_info['theme']['bg07']= 'daaaaa';
$phpgw_info["theme"]["bg09"]= "da8a8a"; $phpgw_info['theme']['bg08']= 'da9090';
$phpgw_info["theme"]["bg10"]= "da7a7a"; $phpgw_info['theme']['bg09']= 'da8a8a';
$phpgw_info['theme']['bg10']= 'da7a7a';
// Theses are for the calendar only // Theses are for the calendar only
$phpgw_info["theme"]["cal_today"]= "FFFFCC"; $phpgw_info['theme']['cal_today']= 'FFFFCC';
$phpgw_info["theme"]["cal_dayview"]= "C0C0C0"; $phpgw_info['theme']['cal_dayview']= 'C0C0C0';
// These are for the email only // These are for the email only
$phpgw_info["theme"]["em_folder"]= "666699"; $phpgw_info['theme']['em_folder']= '666699';
$phpgw_info["theme"]["em_folder_text"]= "FFFFFF"; $phpgw_info['theme']['em_folder_text']= 'FFFFFF';

View File

@ -1,34 +1,47 @@
<?php <?php
$phpgw_info["theme"]["bg_color"]= "FFFFFF"; /**************************************************************************\
$phpgw_info["theme"]["bg_text"]= "000000"; * phpGroupWare *
$phpgw_info["theme"]["vlink"]= "blue"; * http://www.phpgroupware.org *
$phpgw_info["theme"]["alink"]= "red"; * -------------------------------------------- *
$phpgw_info["theme"]["link"]= "blue"; * This program is free software; you can redistribute it and/or modify it *
$phpgw_info["theme"]["row_on"]= "CCCCFF"; * under the terms of the GNU General Public License as published by the *
$phpgw_info["theme"]["row_off"]= "E4DFFF"; * Free Software Foundation; either version 2 of the License, or (at your *
$phpgw_info["theme"]["row_text"]= "000000"; * option) any later version. *
$phpgw_info["theme"]["th_bg"]= "9999FF"; \**************************************************************************/
$phpgw_info["theme"]["th_text"]= "000000";
$phpgw_info["theme"]["navbar_bg"]= "967FF4"; /* $Id$ */
$phpgw_info["theme"]["navbar_text"]= "000000";
$phpgw_info["theme"]["table_bg"]= "967FF4"; $phpgw_info['theme']['bg_color'] = 'FFFFFF';
$phpgw_info["theme"]["table_text"]= "000000"; $phpgw_info['theme']['bg_text'] = '000000';
$phpgw_info["theme"]["font"]= "Arial, Helvetica, san-serif"; $phpgw_info['theme']['vlink'] = 'blue';
$phpgw_info["theme"]["bg01"]= "dadada"; $phpgw_info['theme']['alink'] = 'red';
$phpgw_info["theme"]["bg02"]= "dad0d0"; $phpgw_info['theme']['link'] = 'blue';
$phpgw_info["theme"]["bg03"]= "dacaca"; $phpgw_info['theme']['row_on'] = 'CCCCFF';
$phpgw_info["theme"]["bg04"]= "dac0c0"; $phpgw_info['theme']['row_off'] = 'E4DFFF';
$phpgw_info["theme"]["bg05"]= "dababa"; $phpgw_info['theme']['row_text'] = '000000';
$phpgw_info["theme"]["bg06"]= "dab0b0"; $phpgw_info['theme']['th_bg'] = '9999FF';
$phpgw_info["theme"]["bg07"]= "daaaaa"; $phpgw_info['theme']['th_text'] = '000000';
$phpgw_info["theme"]["bg08"]= "da9090"; $phpgw_info['theme']['navbar_bg'] = '967FF4';
$phpgw_info["theme"]["bg09"]= "da8a8a"; $phpgw_info['theme']['special_logo'] = 'logo_967FF4.gif';
$phpgw_info["theme"]["bg10"]= "da7a7a"; $phpgw_info['theme']['navbar_text'] = '000000';
$phpgw_info['theme']['table_bg'] = '967FF4';
$phpgw_info['theme']['table_text'] = '000000';
$phpgw_info['theme']['font'] = 'Arial, Helvetica, san-serif';
$phpgw_info['theme']['bg01']= 'dadada';
$phpgw_info['theme']['bg02']= 'dad0d0';
$phpgw_info['theme']['bg03']= 'dacaca';
$phpgw_info['theme']['bg04']= 'dac0c0';
$phpgw_info['theme']['bg05']= 'dababa';
$phpgw_info['theme']['bg06']= 'dab0b0';
$phpgw_info['theme']['bg07']= 'daaaaa';
$phpgw_info['theme']['bg08']= 'da9090';
$phpgw_info['theme']['bg09']= 'da8a8a';
$phpgw_info['theme']['bg10']= 'da7a7a';
// This one is for the calendar only // This one is for the calendar only
$phpgw_info["theme"]["cal_today"]= "FFFFCC"; $phpgw_info['theme']['cal_today']= 'FFFFCC';
// These are for the email only // These are for the email only
$phpgw_info["theme"]["em_folder"]= "666699"; $phpgw_info['theme']['em_folder']= '666699';
$phpgw_info["theme"]["em_folder_text"]= "FFFFFF"; $phpgw_info['theme']['em_folder_text']= 'FFFFFF';

View File

@ -11,36 +11,37 @@
/* $Id$ */ /* $Id$ */
$phpgw_info["theme"]["bg_color"]= "FFFFFF"; $phpgw_info['theme']['bg_color'] = 'FFFFFF';
$phpgw_info["theme"]["bg_text"]= "000000"; $phpgw_info['theme']['bg_text'] = '000000';
$phpgw_info["theme"]["vlink"]= "blue"; $phpgw_info['theme']['vlink'] = 'blue';
$phpgw_info["theme"]["alink"]= "red"; $phpgw_info['theme']['alink'] = 'red';
$phpgw_info["theme"]["link"]= "blue"; $phpgw_info['theme']['link'] = 'blue';
$phpgw_info["theme"]["row_on"]= "DDDDDD"; $phpgw_info['theme']['row_on'] = 'DDDDDD';
$phpgw_info["theme"]["row_off"]= "EEEEEE"; $phpgw_info['theme']['row_off'] = 'EEEEEE';
$phpgw_info["theme"]["row_text"]= "000000"; $phpgw_info['theme']['row_text'] = '000000';
$phpgw_info["theme"]["th_bg"]= "D3DCE3"; $phpgw_info['theme']['th_bg'] = 'D3DCE3';
$phpgw_info["theme"]["th_text"]= "000000"; $phpgw_info['theme']['th_text'] = '000000';
$phpgw_info["theme"]["navbar_bg"]= "5A0000"; $phpgw_info['theme']['navbar_bg'] = '5A0000';
$phpgw_info["theme"]["navbar_text"]= "000000"; $phpgw_info['theme']['special_logo'] = 'logo_5A0000.gif';
$phpgw_info["theme"]["table_bg"]= "9999FF"; $phpgw_info['theme']['navbar_text'] = '000000';
$phpgw_info["theme"]["table_text"]= "000000"; $phpgw_info['theme']['table_bg'] = '9999FF';
$phpgw_info["theme"]["font"]= "Arial, Helvetica, san-serif"; $phpgw_info['theme']['table_text'] = '000000';
$phpgw_info["theme"]["bg01"]= "dadada"; $phpgw_info['theme']['font'] = 'Arial, Helvetica, san-serif';
$phpgw_info["theme"]["bg02"]= "dad0d0"; $phpgw_info['theme']['bg01'] = 'dadada';
$phpgw_info["theme"]["bg03"]= "dacaca"; $phpgw_info['theme']['bg02'] = 'dad0d0';
$phpgw_info["theme"]["bg04"]= "dac0c0"; $phpgw_info['theme']['bg03'] = 'dacaca';
$phpgw_info["theme"]["bg05"]= "dababa"; $phpgw_info['theme']['bg04'] = 'dac0c0';
$phpgw_info["theme"]["bg06"]= "dab0b0"; $phpgw_info['theme']['bg05'] = 'dababa';
$phpgw_info["theme"]["bg07"]= "daaaaa"; $phpgw_info['theme']['bg06'] = 'dab0b0';
$phpgw_info["theme"]["bg08"]= "da9090"; $phpgw_info['theme']['bg07'] = 'daaaaa';
$phpgw_info["theme"]["bg09"]= "da8a8a"; $phpgw_info['theme']['bg08'] = 'da9090';
$phpgw_info["theme"]["bg10"]= "da7a7a"; $phpgw_info['theme']['bg09'] = 'da8a8a';
$phpgw_info['theme']['bg10'] = 'da7a7a';
// Theses are for the calendar only // Theses are for the calendar only
$phpgw_info["theme"]["cal_today"]= "FFFFCC"; $phpgw_info['theme']['cal_today'] = 'FFFFCC';
$phpgw_info["theme"]["cal_dayview"]= "C0C0C0"; $phpgw_info['theme']['cal_dayview'] = 'C0C0C0';
// These are for the email only // These are for the email only
$phpgw_info["theme"]["em_folder"]= "666699"; $phpgw_info['theme']['em_folder'] = '666699';
$phpgw_info["theme"]["em_folder_text"]= "FFFFFF"; $phpgw_info['theme']['em_folder_text'] = 'FFFFFF';

View File

@ -11,36 +11,37 @@
/* $Id$ */ /* $Id$ */
$phpgw_info["theme"]["bg_color"]= "FFFFFF"; $phpgw_info['theme']['bg_color']= 'FFFFFF';
$phpgw_info["theme"]["bg_text"]= "000000"; $phpgw_info['theme']['bg_text']= '000000';
$phpgw_info["theme"]["vlink"]= "blue"; $phpgw_info['theme']['vlink']= 'blue';
$phpgw_info["theme"]["alink"]= "red"; $phpgw_info['theme']['alink']= 'red';
$phpgw_info["theme"]["link"]= "blue"; $phpgw_info['theme']['link']= 'blue';
$phpgw_info["theme"]["row_on"]= "DDDDDD"; $phpgw_info['theme']['row_on']= 'DDDDDD';
$phpgw_info["theme"]["row_off"]= "EEEEEE"; $phpgw_info['theme']['row_off']= 'EEEEEE';
$phpgw_info["theme"]["row_text"]= "000000"; $phpgw_info['theme']['row_text']= '000000';
$phpgw_info["theme"]["th_bg"]= "D3DCE3"; $phpgw_info['theme']['th_bg']= 'D3DCE3';
$phpgw_info["theme"]["th_text"]= "000000"; $phpgw_info['theme']['th_text'] = '000000';
$phpgw_info["theme"]["navbar_bg"]= "000099"; $phpgw_info['theme']['navbar_bg'] = '000099';
$phpgw_info["theme"]["navbar_text"]= "000000"; $phpgw_info['theme']['special_logo'] = 'logo_000099.gif';
$phpgw_info["theme"]["table_bg"]= "9999FF"; $phpgw_info['theme']['navbar_text'] = '000000';
$phpgw_info["theme"]["table_text"]= "000000"; $phpgw_info['theme']['table_bg'] = '9999FF';
$phpgw_info["theme"]["font"]= "Arial, Helvetica, san-serif"; $phpgw_info['theme']['table_text'] = '000000';
$phpgw_info["theme"]["bg01"]= "dadada"; $phpgw_info['theme']['font']= 'Arial, Helvetica, san-serif';
$phpgw_info["theme"]["bg02"]= "dad0d0"; $phpgw_info['theme']['bg01']= 'dadada';
$phpgw_info["theme"]["bg03"]= "dacaca"; $phpgw_info['theme']['bg02']= 'dad0d0';
$phpgw_info["theme"]["bg04"]= "dac0c0"; $phpgw_info['theme']['bg03']= 'dacaca';
$phpgw_info["theme"]["bg05"]= "dababa"; $phpgw_info['theme']['bg04']= 'dac0c0';
$phpgw_info["theme"]["bg06"]= "dab0b0"; $phpgw_info['theme']['bg05']= 'dababa';
$phpgw_info["theme"]["bg07"]= "daaaaa"; $phpgw_info['theme']['bg06']= 'dab0b0';
$phpgw_info["theme"]["bg08"]= "da9090"; $phpgw_info['theme']['bg07']= 'daaaaa';
$phpgw_info["theme"]["bg09"]= "da8a8a"; $phpgw_info['theme']['bg08']= 'da9090';
$phpgw_info["theme"]["bg10"]= "da7a7a"; $phpgw_info['theme']['bg09']= 'da8a8a';
$phpgw_info['theme']['bg10']= 'da7a7a';
// Theses are for the calendar only // Theses are for the calendar only
$phpgw_info["theme"]["cal_today"]= "FFFFCC"; $phpgw_info['theme']['cal_today']= 'FFFFCC';
$phpgw_info["theme"]["cal_dayview"]= "C0C0C0"; $phpgw_info['theme']['cal_dayview']= 'C0C0C0';
// These are for the email only // These are for the email only
$phpgw_info["theme"]["em_folder"]= "666699"; $phpgw_info['theme']['em_folder']= '666699';
$phpgw_info["theme"]["em_folder_text"]= "FFFFFF"; $phpgw_info['theme']['em_folder_text']= 'FFFFFF';

View File

@ -11,36 +11,37 @@
/* $Id$ */ /* $Id$ */
$phpgw_info["theme"]["bg_color"]= "FFFFFF"; $phpgw_info['theme']['bg_color']= 'FFFFFF';
$phpgw_info["theme"]["bg_text"]= "000000"; $phpgw_info['theme']['bg_text']= '000000';
$phpgw_info["theme"]["vlink"]= "blue"; $phpgw_info['theme']['vlink']= 'blue';
$phpgw_info["theme"]["alink"]= "red"; $phpgw_info['theme']['alink']= 'red';
$phpgw_info["theme"]["link"]= "blue"; $phpgw_info['theme']['link']= 'blue';
$phpgw_info["theme"]["row_on"]= "DDDDDD"; $phpgw_info['theme']['row_on']= 'DDDDDD';
$phpgw_info["theme"]["row_off"]= "EEEEEE"; $phpgw_info['theme']['row_off']= 'EEEEEE';
$phpgw_info["theme"]["row_text"]= "000000"; $phpgw_info['theme']['row_text'] = '000000';
$phpgw_info["theme"]["th_bg"]= "D3DCE3"; $phpgw_info['theme']['th_bg'] = 'D3DCE3';
$phpgw_info["theme"]["th_text"]= "000000"; $phpgw_info['theme']['th_text'] = '000000';
$phpgw_info["theme"]["navbar_bg"]= "003300"; $phpgw_info['theme']['navbar_bg'] = '003300';
$phpgw_info["theme"]["navbar_text"]= "000000"; $phpgw_info['theme']['special_logo'] = 'logo_003300.gif';
$phpgw_info["theme"]["table_bg"]= "9999FF"; $phpgw_info['theme']['navbar_text'] = '000000';
$phpgw_info["theme"]["table_text"]= "000000"; $phpgw_info['theme']['table_bg'] = '9999FF';
$phpgw_info["theme"]["font"]= "Arial, Helvetica, san-serif"; $phpgw_info['theme']['table_text'] = '000000';
$phpgw_info["theme"]["bg01"]= "dadada"; $phpgw_info['theme']['font'] = 'Arial, Helvetica, san-serif';
$phpgw_info["theme"]["bg02"]= "dad0d0"; $phpgw_info['theme']['bg01']= 'dadada';
$phpgw_info["theme"]["bg03"]= "dacaca"; $phpgw_info['theme']['bg02']= 'dad0d0';
$phpgw_info["theme"]["bg04"]= "dac0c0"; $phpgw_info['theme']['bg03']= 'dacaca';
$phpgw_info["theme"]["bg05"]= "dababa"; $phpgw_info['theme']['bg04']= 'dac0c0';
$phpgw_info["theme"]["bg06"]= "dab0b0"; $phpgw_info['theme']['bg05']= 'dababa';
$phpgw_info["theme"]["bg07"]= "daaaaa"; $phpgw_info['theme']['bg06']= 'dab0b0';
$phpgw_info["theme"]["bg08"]= "da9090"; $phpgw_info['theme']['bg07']= 'daaaaa';
$phpgw_info["theme"]["bg09"]= "da8a8a"; $phpgw_info['theme']['bg08']= 'da9090';
$phpgw_info["theme"]["bg10"]= "da7a7a"; $phpgw_info['theme']['bg09']= 'da8a8a';
$phpgw_info['theme']['bg10']= 'da7a7a';
// Theses are for the calendar only // Theses are for the calendar only
$phpgw_info["theme"]["cal_today"]= "FFFFCC"; $phpgw_info['theme']['cal_today']= 'FFFFCC';
$phpgw_info["theme"]["cal_dayview"]= "C0C0C0"; $phpgw_info['theme']['cal_dayview']= 'C0C0C0';
// These are for the email only // These are for the email only
$phpgw_info["theme"]["em_folder"]= "666699"; $phpgw_info['theme']['em_folder']= '666699';
$phpgw_info["theme"]["em_folder_text"]= "FFFFFF"; $phpgw_info['theme']['em_folder_text']= 'FFFFFF';

View File

@ -1,40 +1,46 @@
<?php <?php
/* /**************************************************************************\
** This is the default theme for the users * phpGroupWare *
** You can use this as a template for new themes. * http://www.phpgroupware.org *
** If you make some good ones, please, send me a copy and I will include it. * -------------------------------------------- *
*/ * 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, or (at your *
* option) any later version. *
\**************************************************************************/
$phpgw_info["theme"]["bg_color"]= "FFFFFF"; /* $Id$ */
$phpgw_info["theme"]["bg_text"]= "000000";
$phpgw_info["theme"]["vlink"]= "blue"; $phpgw_info['theme']['bg_color']= 'FFFFFF';
$phpgw_info["theme"]["alink"]= "red"; $phpgw_info['theme']['bg_text']= '000000';
$phpgw_info["theme"]["link"]= "blue"; $phpgw_info['theme']['vlink']= 'blue';
$phpgw_info["theme"]["row_on"]= "DDDDDD"; $phpgw_info['theme']['alink']= 'red';
$phpgw_info["theme"]["row_off"]= "EEEEEE"; $phpgw_info['theme']['link']= 'blue';
$phpgw_info["theme"]["row_text"]= "000000"; $phpgw_info['theme']['row_on']= 'DDDDDD';
$phpgw_info["theme"]["th_bg"]= "D3DCE3"; $phpgw_info['theme']['row_off']= 'EEEEEE';
$phpgw_info["theme"]["th_text"]= "000000"; $phpgw_info['theme']['row_text']= '000000';
$phpgw_info["theme"]["navbar_bg"]= "9999FF"; $phpgw_info['theme']['th_bg']= 'D3DCE3';
$phpgw_info["theme"]["navbar_text"]= "000000"; $phpgw_info['theme']['th_text']= '000000';
$phpgw_info["theme"]["table_bg"]= "9999FF"; $phpgw_info['theme']['navbar_bg']= '9999FF';
$phpgw_info["theme"]["table_text"]= "000000"; $phpgw_info['theme']['navbar_text']= '000000';
$phpgw_info["theme"]["font"]= "Arial, Helvetica, san-serif"; $phpgw_info['theme']['table_bg']= '9999FF';
$phpgw_info["theme"]["bg01"]= "dadada"; $phpgw_info['theme']['table_text']= '000000';
$phpgw_info["theme"]["bg02"]= "dad0d0"; $phpgw_info['theme']['font']= 'Arial, Helvetica, san-serif';
$phpgw_info["theme"]["bg03"]= "dacaca"; $phpgw_info['theme']['bg01']= 'dadada';
$phpgw_info["theme"]["bg04"]= "dac0c0"; $phpgw_info['theme']['bg02']= 'dad0d0';
$phpgw_info["theme"]["bg05"]= "dababa"; $phpgw_info['theme']['bg03']= 'dacaca';
$phpgw_info["theme"]["bg06"]= "dab0b0"; $phpgw_info['theme']['bg04']= 'dac0c0';
$phpgw_info["theme"]["bg07"]= "daaaaa"; $phpgw_info['theme']['bg05']= 'dababa';
$phpgw_info["theme"]["bg08"]= "da9090"; $phpgw_info['theme']['bg06']= 'dab0b0';
$phpgw_info["theme"]["bg09"]= "da8a8a"; $phpgw_info['theme']['bg07']= 'daaaaa';
$phpgw_info["theme"]["bg10"]= "da7a7a"; $phpgw_info['theme']['bg08']= 'da9090';
$phpgw_info['theme']['bg09']= 'da8a8a';
$phpgw_info['theme']['bg10']= 'da7a7a';
// Theses are for the calendar only // Theses are for the calendar only
$phpgw_info["theme"]["cal_today"]= "FFFFCC"; $phpgw_info['theme']['cal_today']= 'FFFFCC';
$phpgw_info["theme"]["cal_dayview"]= "C0C0C0"; $phpgw_info['theme']['cal_dayview']= 'C0C0C0';
// These are for the email only // These are for the email only
$phpgw_info["theme"]["em_folder"]= "666699"; $phpgw_info['theme']['em_folder']= '666699';
$phpgw_info["theme"]["em_folder_text"]= "FFFFFF"; $phpgw_info['theme']['em_folder_text']= 'FFFFFF';

View File

@ -1,40 +1,46 @@
<?php <?php
/* /**************************************************************************\
** This is the default theme for the users * phpGroupWare *
** You can use this as a template for new themes. * http://www.phpgroupware.org *
** If you make some good ones, please, send me a copy and I will include it. * -------------------------------------------- *
*/ * 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, or (at your *
* option) any later version. *
\**************************************************************************/
$phpgw_info["theme"]["bg_color"]= "F5F5F5"; /* $Id$ */
$phpgw_info["theme"]["bg_text"]= "000000";
$phpgw_info["theme"]["vlink"]= "EE0000"; $phpgw_info['theme']['bg_color']= 'F5F5F5';
$phpgw_info["theme"]["alink"]= "EE0000"; $phpgw_info['theme']['bg_text']= '000000';
$phpgw_info["theme"]["link"]= "EE0000"; $phpgw_info['theme']['vlink']= 'EE0000';
$phpgw_info["theme"]["row_on"]= "EEEEFF"; $phpgw_info['theme']['alink']= 'EE0000';
$phpgw_info["theme"]["row_off"]= "FFFFEE"; $phpgw_info['theme']['link']= 'EE0000';
$phpgw_info["theme"]["row_text"]= "000000"; $phpgw_info['theme']['row_on']= 'EEEEFF';
$phpgw_info["theme"]["th_bg"]= "FFE4C4"; $phpgw_info['theme']['row_off']= 'FFFFEE';
$phpgw_info["theme"]["th_text"]= "000000"; $phpgw_info['theme']['row_text']= '000000';
$phpgw_info["theme"]["navbar_bg"]= "AABBCC"; $phpgw_info['theme']['th_bg']= 'FFE4C4';
$phpgw_info["theme"]["navbar_text"]= "000000"; $phpgw_info['theme']['th_text']= '000000';
$phpgw_info["theme"]["table_bg"]= "F5F5F5"; $phpgw_info['theme']['navbar_bg']= 'AABBCC';
$phpgw_info["theme"]["table_text"]= "000000"; $phpgw_info['theme']['navbar_text']= '000000';
$phpgw_info["theme"]["font"]= "Arial, Helvetica, san-serif"; $phpgw_info['theme']['table_bg']= 'F5F5F5';
$phpgw_info["theme"]["bg01"]= "dadada"; $phpgw_info['theme']['table_text']= '000000';
$phpgw_info["theme"]["bg02"]= "dad0d0"; $phpgw_info['theme']['font']= 'Arial, Helvetica, san-serif';
$phpgw_info["theme"]["bg03"]= "dacaca"; $phpgw_info['theme']['bg01']= 'dadada';
$phpgw_info["theme"]["bg04"]= "dac0c0"; $phpgw_info['theme']['bg02']= 'dad0d0';
$phpgw_info["theme"]["bg05"]= "dababa"; $phpgw_info['theme']['bg03']= 'dacaca';
$phpgw_info["theme"]["bg06"]= "dab0b0"; $phpgw_info['theme']['bg04']= 'dac0c0';
$phpgw_info["theme"]["bg07"]= "daaaaa"; $phpgw_info['theme']['bg05']= 'dababa';
$phpgw_info["theme"]["bg08"]= "da9090"; $phpgw_info['theme']['bg06']= 'dab0b0';
$phpgw_info["theme"]["bg09"]= "da8a8a"; $phpgw_info['theme']['bg07']= 'daaaaa';
$phpgw_info["theme"]["bg10"]= "da7a7a"; $phpgw_info['theme']['bg08']= 'da9090';
$phpgw_info['theme']['bg09']= 'da8a8a';
$phpgw_info['theme']['bg10']= 'da7a7a';
// Theses are for the calendar only // Theses are for the calendar only
$phpgw_info["theme"]["cal_today"]= "D0DCE0"; $phpgw_info['theme']['cal_today']= 'D0DCE0';
$phpgw_info["theme"]["cal_dayview"]= "C0C0C0"; $phpgw_info['theme']['cal_dayview']= 'C0C0C0';
// These are for the email only // These are for the email only
$phpgw_info["theme"]["em_folder"]= "7090FF"; $phpgw_info['theme']['em_folder']= '7090FF';
$phpgw_info["theme"]["em_folder_text"]= "FFFFFF"; $phpgw_info['theme']['em_folder_text']= 'FFFFFF';

View File

@ -1,32 +1,43 @@
<? <?php
# phpGroupWare Theme file /**************************************************************************\
$phpgw_info["theme"]["bg_color"]= "dfdfdf"; * phpGroupWare *
$phpgw_info["theme"]["bg_text"]= "222222"; * http://www.phpgroupware.org *
$phpgw_info["theme"]["vlink"]= "5555ff"; * -------------------------------------------- *
$phpgw_info["theme"]["alink"]= "black"; * This program is free software; you can redistribute it and/or modify it *
$phpgw_info["theme"]["link"]= "0000ff"; * under the terms of the GNU General Public License as published by the *
$phpgw_info["theme"]["row_on"]= "eeeeee"; * Free Software Foundation; either version 2 of the License, or (at your *
$phpgw_info["theme"]["row_off"]= "cccccc"; * option) any later version. *
$phpgw_info["theme"]["row_text"]= "000000"; \**************************************************************************/
$phpgw_info["theme"]["th_bg"]= "eeeeee";
$phpgw_info["theme"]["th_text"]= "000000"; /* $Id$ */
$phpgw_info["theme"]["navbar_bg"]= "aaaaaa";
$phpgw_info["theme"]["navbar_text"]= "000000"; $phpgw_info['theme']['bg_color']= 'dfdfdf';
$phpgw_info["theme"]["table_bg"]= "eeeeee"; $phpgw_info['theme']['bg_text']= '222222';
$phpgw_info["theme"]["table_text"]= "000000"; $phpgw_info['theme']['vlink']= '5555ff';
$phpgw_info["theme"]["font"]= "Arial, Helvetica, san-serif"; $phpgw_info['theme']['alink']= 'black';
$phpgw_info["theme"]["bg01"]= "eeeeee"; $phpgw_info['theme']['link']= '0000ff';
$phpgw_info["theme"]["bg02"]= "cccccc"; $phpgw_info['theme']['row_on']= 'eeeeee';
$phpgw_info["theme"]["bg03"]= "bbbbbb"; $phpgw_info['theme']['row_off']= 'cccccc';
$phpgw_info["theme"]["bg04"]= "aaaaaa"; $phpgw_info['theme']['row_text']= '000000';
$phpgw_info["theme"]["bg05"]= "999999"; $phpgw_info['theme']['th_bg']= 'eeeeee';
$phpgw_info["theme"]["bg06"]= "888888"; $phpgw_info['theme']['th_text']= '000000';
$phpgw_info["theme"]["bg07"]= "777777"; $phpgw_info['theme']['navbar_bg']= 'aaaaaa';
$phpgw_info["theme"]["bg08"]= "666666"; $phpgw_info['theme']['navbar_text']= '000000';
$phpgw_info["theme"]["bg09"]= "555555"; $phpgw_info['theme']['table_bg']= 'eeeeee';
$phpgw_info["theme"]["bg10"]= "444444"; $phpgw_info['theme']['table_text']= '000000';
$phpgw_info["theme"]["cal_today"]= "FBF1C5"; $phpgw_info['theme']['font']= 'Arial, Helvetica, san-serif';
$phpgw_info["theme"]["cal_dayview"]= "F9E99F"; $phpgw_info['theme']['bg01']= 'eeeeee';
$phpgw_info["theme"]["em_folder"]= "EAD688"; $phpgw_info['theme']['bg02']= 'cccccc';
$phpgw_info["theme"]["em_folder_text"]= "000000"; $phpgw_info['theme']['bg03']= 'bbbbbb';
$phpgw_info['theme']['bg04']= 'aaaaaa';
$phpgw_info['theme']['bg05']= '999999';
$phpgw_info['theme']['bg06']= '888888';
$phpgw_info['theme']['bg07']= '777777';
$phpgw_info['theme']['bg08']= '666666';
$phpgw_info['theme']['bg09']= '555555';
$phpgw_info['theme']['bg10']= '444444';
$phpgw_info['theme']['cal_today']= 'FBF1C5';
$phpgw_info['theme']['cal_dayview']= 'F9E99F';
$phpgw_info['theme']['em_folder']= 'EAD688';
$phpgw_info['theme']['em_folder_text']= '000000';
?> ?>

View File

@ -1,35 +1,47 @@
<?php <?php
$phpgw_info["theme"]["bg_color"]= "FFFFFF"; /**************************************************************************\
$phpgw_info["theme"]["bg_text"]= "000000"; * phpGroupWare *
$phpgw_info["theme"]["vlink"]= "blue"; * http://www.phpgroupware.org *
$phpgw_info["theme"]["alink"]= "red"; * -------------------------------------------- *
$phpgw_info["theme"]["link"]= "blue"; * This program is free software; you can redistribute it and/or modify it *
$phpgw_info["theme"]["row_on"]= "DDDDDD"; * under the terms of the GNU General Public License as published by the *
$phpgw_info["theme"]["row_off"]= "EEEEEE"; * Free Software Foundation; either version 2 of the License, or (at your *
$phpgw_info["theme"]["row_text"]= "000000"; * option) any later version. *
$phpgw_info["theme"]["th_bg"]= "D3DCE3"; \**************************************************************************/
$phpgw_info["theme"]["th_text"]= "000000";
$phpgw_info["theme"]["navbar_bg"]= "80BBFF"; /* $Id$ */
$phpgw_info["theme"]["navbar_text"]= "000000";
$phpgw_info["theme"]["table_bg"]= "7090FF"; $phpgw_info['theme']['bg_color']= 'FFFFFF';
$phpgw_info["theme"]["table_text"]= "000000"; $phpgw_info['theme']['bg_text']= '000000';
$phpgw_info["theme"]["font"]= "Arial, Helvetica, san-serif"; $phpgw_info['theme']['vlink']= 'blue';
$phpgw_info["theme"]["bg01"]= "dadada"; $phpgw_info['theme']['alink']= 'red';
$phpgw_info["theme"]["bg02"]= "dad0d0"; $phpgw_info['theme']['link']= 'blue';
$phpgw_info["theme"]["bg03"]= "dacaca"; $phpgw_info['theme']['row_on']= 'DDDDDD';
$phpgw_info["theme"]["bg04"]= "dac0c0"; $phpgw_info['theme']['row_off']= 'EEEEEE';
$phpgw_info["theme"]["bg05"]= "dababa"; $phpgw_info['theme']['row_text']= '000000';
$phpgw_info["theme"]["bg06"]= "dab0b0"; $phpgw_info['theme']['th_bg']= 'D3DCE3';
$phpgw_info["theme"]["bg07"]= "daaaaa"; $phpgw_info['theme']['th_text']= '000000';
$phpgw_info["theme"]["bg08"]= "da9090"; $phpgw_info['theme']['navbar_bg']= '80BBFF';
$phpgw_info["theme"]["bg09"]= "da8a8a"; $phpgw_info['theme']['navbar_text']= '000000';
$phpgw_info["theme"]["bg10"]= "da7a7a"; $phpgw_info['theme']['table_bg']= '7090FF';
$phpgw_info['theme']['table_text']= '000000';
$phpgw_info['theme']['font']= 'Arial, Helvetica, san-serif';
$phpgw_info['theme']['bg01']= 'dadada';
$phpgw_info['theme']['bg02']= 'dad0d0';
$phpgw_info['theme']['bg03']= 'dacaca';
$phpgw_info['theme']['bg04']= 'dac0c0';
$phpgw_info['theme']['bg05']= 'dababa';
$phpgw_info['theme']['bg06']= 'dab0b0';
$phpgw_info['theme']['bg07']= 'daaaaa';
$phpgw_info['theme']['bg08']= 'da9090';
$phpgw_info['theme']['bg09']= 'da8a8a';
$phpgw_info['theme']['bg10']= 'da7a7a';
// Theses are for the calendar only // Theses are for the calendar only
$phpgw_info["theme"]["cal_today"]= "FFFFCC"; $phpgw_info['theme']['cal_today']= 'FFFFCC';
$phpgw_info["theme"]["cal_dayview"]= "C0C0C0"; $phpgw_info['theme']['cal_dayview']= 'C0C0C0';
// These are for the email only // These are for the email only
//$phpgw_info["theme"]["em_folder"]= "666699"; //$phpgw_info['theme']['em_folder']= '666699';
$phpgw_info["theme"]["em_folder"]= "7090FF"; $phpgw_info['theme']['em_folder']= '7090FF';
$phpgw_info["theme"]["em_folder_text"]= "FFFFFF"; $phpgw_info['theme']['em_folder_text']= 'FFFFFF';

View File

@ -11,41 +11,41 @@
/* $Id$ */ /* $Id$ */
$phpgw_info["theme"]["bg_color"]= "#ffffff"; $phpgw_info['theme']['bg_color']= '#ffffff';
$phpgw_info["theme"]["bg_text"]= "#000000"; $phpgw_info['theme']['bg_text']= '#000000';
$phpgw_info["theme"]["vlink"]= "#333366"; $phpgw_info['theme']['vlink']= '#333366';
$phpgw_info["theme"]["alink"]= "#ff0000"; $phpgw_info['theme']['alink']= '#ff0000';
// for future use with A.hover in CSS // for future use with A.hover in CSS
$phpgw_info["theme"]["hovlink"]= "#cc0000"; $phpgw_info['theme']['hovlink']= '#cc0000';
$phpgw_info["theme"]["link"]= "#336699"; $phpgw_info['theme']['link']= '#336699';
$phpgw_info["theme"]["row_on"]= "#dddddd"; $phpgw_info['theme']['row_on']= '#dddddd';
$phpgw_info["theme"]["row_off"]= "#eeeeee"; $phpgw_info['theme']['row_off']= '#eeeeee';
$phpgw_info["theme"]["row_text"]= "#000000"; $phpgw_info['theme']['row_text']= '#000000';
$phpgw_info["theme"]["th_bg"]= "#d3dce3"; $phpgw_info['theme']['th_bg']= '#d3dce3';
$phpgw_info["theme"]["th_text"]= "#000000"; $phpgw_info['theme']['th_text']= '#000000';
$phpgw_info["theme"]["navbar_bg"]= "#adadad"; $phpgw_info['theme']['navbar_bg']= '#adadad';
$phpgw_info["theme"]["navbar_text"]= "#000000"; $phpgw_info['theme']['navbar_text']= '#000000';
$phpgw_info["theme"]["table_bg"]= "#9999ff"; $phpgw_info['theme']['table_bg']= '#9999ff';
$phpgw_info["theme"]["table_text"]= "#000000"; $phpgw_info['theme']['table_text']= '#000000';
$phpgw_info["theme"]["font"]= "Arial, Helvetica, san-serif"; $phpgw_info['theme']['font']= 'Arial, Helvetica, san-serif';
$phpgw_info["theme"]["bg01"]= "#dadada"; $phpgw_info['theme']['bg01']= '#dadada';
$phpgw_info["theme"]["bg02"]= "#dad0d0"; $phpgw_info['theme']['bg02']= '#dad0d0';
$phpgw_info["theme"]["bg03"]= "#dacaca"; $phpgw_info['theme']['bg03']= '#dacaca';
$phpgw_info["theme"]["bg04"]= "#dac0c0"; $phpgw_info['theme']['bg04']= '#dac0c0';
$phpgw_info["theme"]["bg05"]= "#dababa"; $phpgw_info['theme']['bg05']= '#dababa';
$phpgw_info["theme"]["bg06"]= "#dab0b0"; $phpgw_info['theme']['bg06']= '#dab0b0';
$phpgw_info["theme"]["bg07"]= "#daaaaa"; $phpgw_info['theme']['bg07']= '#daaaaa';
$phpgw_info["theme"]["bg08"]= "#da9090"; $phpgw_info['theme']['bg08']= '#da9090';
$phpgw_info["theme"]["bg09"]= "#da8a8a"; $phpgw_info['theme']['bg09']= '#da8a8a';
$phpgw_info["theme"]["bg10"]= "#da7a7a"; $phpgw_info['theme']['bg10']= '#da7a7a';
// Theses are for the calendar only // Theses are for the calendar only
$phpgw_info["theme"]["cal_today"]= "#ffffcc"; $phpgw_info['theme']['cal_today']= '#ffffcc';
$phpgw_info["theme"]["cal_dayview"]= "#c0c0c0"; $phpgw_info['theme']['cal_dayview']= '#c0c0c0';
// These are for the email only // These are for the email only
//$phpgw_info["theme"]["em_folder"]= "#666699"; //$phpgw_info['theme']['em_folder']= '#666699';
//$phpgw_info["theme"]["em_folder"]= "#bebebe"; //$phpgw_info['theme']['em_folder']= '#bebebe';
$phpgw_info["theme"]["em_folder"]= "#adadad"; $phpgw_info['theme']['em_folder']= '#adadad';
$phpgw_info["theme"]["em_folder_text"]= "#ffffff"; $phpgw_info['theme']['em_folder_text']= '#ffffff';
//$phpgw_info["theme"]["em_folder_text"]= "#000000"; //$phpgw_info['theme']['em_folder_text']= '#000000';

View File

@ -11,36 +11,37 @@
/* $Id$ */ /* $Id$ */
$phpgw_info["theme"]["bg_color"]= "FFFFFF"; $phpgw_info['theme']['bg_color'] = 'FFFFFF';
$phpgw_info["theme"]["bg_text"]= "000000"; $phpgw_info['theme']['bg_text'] = '000000';
$phpgw_info["theme"]["vlink"]= "blue"; $phpgw_info['theme']['vlink'] = 'blue';
$phpgw_info["theme"]["alink"]= "red"; $phpgw_info['theme']['alink'] = 'red';
$phpgw_info["theme"]["link"]= "blue"; $phpgw_info['theme']['link'] = 'blue';
$phpgw_info["theme"]["row_on"]= "DDDDDD"; $phpgw_info['theme']['row_on'] = 'DDDDDD';
$phpgw_info["theme"]["row_off"]= "EEEEEE"; $phpgw_info['theme']['row_off'] = 'EEEEEE';
$phpgw_info["theme"]["row_text"]= "000000"; $phpgw_info['theme']['row_text'] = '000000';
$phpgw_info["theme"]["th_bg"]= "D3DCE3"; $phpgw_info['theme']['th_bg'] = 'D3DCE3';
$phpgw_info["theme"]["th_text"]= "000000"; $phpgw_info['theme']['th_text'] = '000000';
$phpgw_info["theme"]["navbar_bg"]= "486591"; $phpgw_info['theme']['navbar_bg'] = '486591';
$phpgw_info["theme"]["navbar_text"]= "000000"; $phpgw_info['theme']['special_logo'] = 'logo_486591.gif';
$phpgw_info["theme"]["table_bg"]= "9999FF"; $phpgw_info['theme']['navbar_text'] = '000000';
$phpgw_info["theme"]["table_text"]= "000000"; $phpgw_info['theme']['table_bg'] = '9999FF';
$phpgw_info["theme"]["font"]= "Arial, Helvetica, san-serif"; $phpgw_info['theme']['table_text'] = '000000';
$phpgw_info["theme"]["bg01"]= "dadada"; $phpgw_info['theme']['font'] = 'Arial, Helvetica, san-serif';
$phpgw_info["theme"]["bg02"]= "dad0d0"; $phpgw_info['theme']['bg01'] = 'dadada';
$phpgw_info["theme"]["bg03"]= "dacaca"; $phpgw_info['theme']['bg02'] = 'dad0d0';
$phpgw_info["theme"]["bg04"]= "dac0c0"; $phpgw_info['theme']['bg03'] = 'dacaca';
$phpgw_info["theme"]["bg05"]= "dababa"; $phpgw_info['theme']['bg04'] = 'dac0c0';
$phpgw_info["theme"]["bg06"]= "dab0b0"; $phpgw_info['theme']['bg05'] = 'dababa';
$phpgw_info["theme"]["bg07"]= "daaaaa"; $phpgw_info['theme']['bg06'] = 'dab0b0';
$phpgw_info["theme"]["bg08"]= "da9090"; $phpgw_info['theme']['bg07'] = 'daaaaa';
$phpgw_info["theme"]["bg09"]= "da8a8a"; $phpgw_info['theme']['bg08'] = 'da9090';
$phpgw_info["theme"]["bg10"]= "da7a7a"; $phpgw_info['theme']['bg09'] = 'da8a8a';
$phpgw_info['theme']['bg10'] = 'da7a7a';
// Theses are for the calendar only // Theses are for the calendar only
$phpgw_info["theme"]["cal_today"]= "FFFFCC"; $phpgw_info['theme']['cal_today'] = 'FFFFCC';
$phpgw_info["theme"]["cal_dayview"]= "C0C0C0"; $phpgw_info['theme']['cal_dayview'] = 'C0C0C0';
// These are for the email only // These are for the email only
$phpgw_info["theme"]["em_folder"]= "666699"; $phpgw_info['theme']['em_folder'] = '666699';
$phpgw_info["theme"]["em_folder_text"]= "FFFFFF"; $phpgw_info['theme']['em_folder_text']= 'FFFFFF';

View File

@ -11,36 +11,37 @@
/* $Id$ */ /* $Id$ */
$phpgw_info["theme"]["bg_color"]= "FFFFFF"; $phpgw_info['theme']['bg_color'] = 'FFFFFF';
$phpgw_info["theme"]["bg_text"]= "000000"; $phpgw_info['theme']['bg_text'] = '000000';
$phpgw_info["theme"]["vlink"]= "blue"; $phpgw_info['theme']['vlink'] = 'blue';
$phpgw_info["theme"]["alink"]= "red"; $phpgw_info['theme']['alink'] = 'red';
$phpgw_info["theme"]["link"]= "blue"; $phpgw_info['theme']['link'] = 'blue';
$phpgw_info["theme"]["row_on"]= "DDDDDD"; $phpgw_info['theme']['row_on'] = 'DDDDDD';
$phpgw_info["theme"]["row_off"]= "EEEEEE"; $phpgw_info['theme']['row_off'] = 'EEEEEE';
$phpgw_info["theme"]["row_text"]= "000000"; $phpgw_info['theme']['row_text'] = '000000';
$phpgw_info["theme"]["th_bg"]= "D3DCE3"; $phpgw_info['theme']['th_bg'] = 'D3DCE3';
$phpgw_info["theme"]["th_text"]= "000000"; $phpgw_info['theme']['th_text'] = '000000';
$phpgw_info["theme"]["navbar_bg"]= "885522"; $phpgw_info['theme']['navbar_bg'] = '885522';
$phpgw_info["theme"]["navbar_text"]= "000000"; $phpgw_info['theme']['special_logo'] = 'logo_885522.gif';
$phpgw_info["theme"]["table_bg"]= "9999FF"; $phpgw_info['theme']['navbar_text'] = '000000';
$phpgw_info["theme"]["table_text"]= "000000"; $phpgw_info['theme']['table_bg'] = '9999FF';
$phpgw_info["theme"]["font"]= "Arial, Helvetica, san-serif"; $phpgw_info['theme']['table_text'] = '000000';
$phpgw_info["theme"]["bg01"]= "dadada"; $phpgw_info['theme']['font'] = 'Arial, Helvetica, san-serif';
$phpgw_info["theme"]["bg02"]= "dad0d0"; $phpgw_info['theme']['bg01']= 'dadada';
$phpgw_info["theme"]["bg03"]= "dacaca"; $phpgw_info['theme']['bg02']= 'dad0d0';
$phpgw_info["theme"]["bg04"]= "dac0c0"; $phpgw_info['theme']['bg03']= 'dacaca';
$phpgw_info["theme"]["bg05"]= "dababa"; $phpgw_info['theme']['bg04']= 'dac0c0';
$phpgw_info["theme"]["bg06"]= "dab0b0"; $phpgw_info['theme']['bg05']= 'dababa';
$phpgw_info["theme"]["bg07"]= "daaaaa"; $phpgw_info['theme']['bg06']= 'dab0b0';
$phpgw_info["theme"]["bg08"]= "da9090"; $phpgw_info['theme']['bg07']= 'daaaaa';
$phpgw_info["theme"]["bg09"]= "da8a8a"; $phpgw_info['theme']['bg08']= 'da9090';
$phpgw_info["theme"]["bg10"]= "da7a7a"; $phpgw_info['theme']['bg09']= 'da8a8a';
$phpgw_info['theme']['bg10']= 'da7a7a';
// Theses are for the calendar only // Theses are for the calendar only
$phpgw_info["theme"]["cal_today"]= "FFFFCC"; $phpgw_info['theme']['cal_today']= 'FFFFCC';
$phpgw_info["theme"]["cal_dayview"]= "C0C0C0"; $phpgw_info['theme']['cal_dayview']= 'C0C0C0';
// These are for the email only // These are for the email only
$phpgw_info["theme"]["em_folder"]= "666699"; $phpgw_info['theme']['em_folder']= '666699';
$phpgw_info["theme"]["em_folder_text"]= "FFFFFF"; $phpgw_info['theme']['em_folder_text']= 'FFFFFF';

View File

@ -1,35 +1,47 @@
<?php <?php
// mojo theme written by marl <marl@users.sourceforge.net> /**************************************************************************\
$phpgw_info["theme"]["bg_color"]= "000000"; * phpGroupWare *
$phpgw_info["theme"]["bg_text"]= "00FF33"; * http://www.phpgroupware.org *
$phpgw_info["theme"]["vlink"]= "0000FF"; * This file written by marl <marl@users.sourceforge.net> *
$phpgw_info["theme"]["alink"]= "999999"; * -------------------------------------------- *
$phpgw_info["theme"]["link"]= "0000FF"; * This program is free software; you can redistribute it and/or modify it *
$phpgw_info["theme"]["row_on"]= "909090"; * under the terms of the GNU General Public License as published by the *
$phpgw_info["theme"]["row_off"]= "808080"; * Free Software Foundation; either version 2 of the License, or (at your *
$phpgw_info["theme"]["row_text"]= "000000"; * option) any later version. *
$phpgw_info["theme"]["th_bg"]= "404040"; \**************************************************************************/
$phpgw_info["theme"]["th_text"]= "00FF33";
$phpgw_info["theme"]["navbar_bg"]= "00FF33"; /* $Id$ */
$phpgw_info["theme"]["navbar_text"]= "FFFFFF";
$phpgw_info["theme"]["table_bg"]= "00FF33"; $phpgw_info['theme']['bg_color']= '000000';
$phpgw_info["theme"]["table_text"]= "FFFFFF"; $phpgw_info['theme']['bg_text']= '00FF33';
$phpgw_info["theme"]["font"]= "Helvetica"; $phpgw_info['theme']['vlink']= '0000FF';
$phpgw_info["theme"]["bg01"]= "dadada"; $phpgw_info['theme']['alink']= '999999';
$phpgw_info["theme"]["bg02"]= "dad0d0"; $phpgw_info['theme']['link']= '0000FF';
$phpgw_info["theme"]["bg03"]= "dacaca"; $phpgw_info['theme']['row_on']= '909090';
$phpgw_info["theme"]["bg04"]= "dac0c0"; $phpgw_info['theme']['row_off']= '808080';
$phpgw_info["theme"]["bg05"]= "dababa"; $phpgw_info['theme']['row_text']= '000000';
$phpgw_info["theme"]["bg06"]= "dab0b0"; $phpgw_info['theme']['th_bg']= '404040';
$phpgw_info["theme"]["bg07"]= "daaaaa"; $phpgw_info['theme']['th_text']= '00FF33';
$phpgw_info["theme"]["bg08"]= "da9090"; $phpgw_info['theme']['navbar_bg']= '00FF33';
$phpgw_info["theme"]["bg09"]= "da8a8a"; $phpgw_info['theme']['navbar_text']= 'FFFFFF';
$phpgw_info["theme"]["bg10"]= "da7a7a"; $phpgw_info['theme']['table_bg']= '00FF33';
$phpgw_info['theme']['table_text']= 'FFFFFF';
$phpgw_info['theme']['font']= 'Helvetica';
$phpgw_info['theme']['bg01']= 'dadada';
$phpgw_info['theme']['bg02']= 'dad0d0';
$phpgw_info['theme']['bg03']= 'dacaca';
$phpgw_info['theme']['bg04']= 'dac0c0';
$phpgw_info['theme']['bg05']= 'dababa';
$phpgw_info['theme']['bg06']= 'dab0b0';
$phpgw_info['theme']['bg07']= 'daaaaa';
$phpgw_info['theme']['bg08']= 'da9090';
$phpgw_info['theme']['bg09']= 'da8a8a';
$phpgw_info['theme']['bg10']= 'da7a7a';
// This one is for the calendar only // This one is for the calendar only
$phpgw_info["theme"]["cal_today"]= "BFBFBF"; $phpgw_info['theme']['cal_today']= 'BFBFBF';
// These are for the email only // These are for the email only
$phpgw_info["theme"]["em_folder"]= "808080"; $phpgw_info['theme']['em_folder']= '808080';
$phpgw_info["theme"]["em_folder_text"]= "000000"; $phpgw_info['theme']['em_folder_text']= '000000';

View File

@ -11,36 +11,37 @@
/* $Id$ */ /* $Id$ */
$phpgw_info["theme"]["bg_color"]= "FFFFFF"; $phpgw_info['theme']['bg_color'] = 'FFFFFF';
$phpgw_info["theme"]["bg_text"]= "000000"; $phpgw_info['theme']['bg_text'] = '000000';
$phpgw_info["theme"]["vlink"]= "blue"; $phpgw_info['theme']['vlink'] = 'blue';
$phpgw_info["theme"]["alink"]= "red"; $phpgw_info['theme']['alink'] = 'red';
$phpgw_info["theme"]["link"]= "blue"; $phpgw_info['theme']['link'] = 'blue';
$phpgw_info["theme"]["row_on"]= "DDDDDD"; $phpgw_info['theme']['row_on'] = 'DDDDDD';
$phpgw_info["theme"]["row_off"]= "EEEEEE"; $phpgw_info['theme']['row_off'] = 'EEEEEE';
$phpgw_info["theme"]["row_text"]= "000000"; $phpgw_info['theme']['row_text'] = '000000';
$phpgw_info["theme"]["th_bg"]= "D3DCE3"; $phpgw_info['theme']['th_bg'] = 'D3DCE3';
$phpgw_info["theme"]["th_text"]= "000000"; $phpgw_info['theme']['th_text'] = '000000';
$phpgw_info["theme"]["navbar_bg"]= "663366"; $phpgw_info['theme']['navbar_bg'] = '663366';
$phpgw_info["theme"]["navbar_text"]= "000000"; $phpgw_info['theme']['special_logo'] = 'logo_663366.gif';
$phpgw_info["theme"]["table_bg"]= "9999FF"; $phpgw_info['theme']['navbar_text'] = '000000';
$phpgw_info["theme"]["table_text"]= "000000"; $phpgw_info['theme']['table_bg'] = '9999FF';
$phpgw_info["theme"]["font"]= "Arial, Helvetica, san-serif"; $phpgw_info['theme']['table_text'] = '000000';
$phpgw_info["theme"]["bg01"]= "dadada"; $phpgw_info['theme']['font'] = 'Arial, Helvetica, san-serif';
$phpgw_info["theme"]["bg02"]= "dad0d0"; $phpgw_info['theme']['bg01']= 'dadada';
$phpgw_info["theme"]["bg03"]= "dacaca"; $phpgw_info['theme']['bg02']= 'dad0d0';
$phpgw_info["theme"]["bg04"]= "dac0c0"; $phpgw_info['theme']['bg03']= 'dacaca';
$phpgw_info["theme"]["bg05"]= "dababa"; $phpgw_info['theme']['bg04']= 'dac0c0';
$phpgw_info["theme"]["bg06"]= "dab0b0"; $phpgw_info['theme']['bg05']= 'dababa';
$phpgw_info["theme"]["bg07"]= "daaaaa"; $phpgw_info['theme']['bg06']= 'dab0b0';
$phpgw_info["theme"]["bg08"]= "da9090"; $phpgw_info['theme']['bg07']= 'daaaaa';
$phpgw_info["theme"]["bg09"]= "da8a8a"; $phpgw_info['theme']['bg08']= 'da9090';
$phpgw_info["theme"]["bg10"]= "da7a7a"; $phpgw_info['theme']['bg09']= 'da8a8a';
$phpgw_info['theme']['bg10']= 'da7a7a';
// Theses are for the calendar only // Theses are for the calendar only
$phpgw_info["theme"]["cal_today"]= "FFFFCC"; $phpgw_info['theme']['cal_today']= 'FFFFCC';
$phpgw_info["theme"]["cal_dayview"]= "C0C0C0"; $phpgw_info['theme']['cal_dayview']= 'C0C0C0';
// These are for the email only // These are for the email only
$phpgw_info["theme"]["em_folder"]= "666699"; $phpgw_info['theme']['em_folder']= '666699';
$phpgw_info["theme"]["em_folder_text"]= "FFFFFF"; $phpgw_info['theme']['em_folder_text']= 'FFFFFF';

View File

@ -11,36 +11,37 @@
/* $Id$ */ /* $Id$ */
$phpgw_info["theme"]["bg_color"]= "FFFFFF"; $phpgw_info['theme']['bg_color'] = 'FFFFFF';
$phpgw_info["theme"]["bg_text"]= "000000"; $phpgw_info['theme']['bg_text'] = '000000';
$phpgw_info["theme"]["vlink"]= "blue"; $phpgw_info['theme']['vlink'] = 'blue';
$phpgw_info["theme"]["alink"]= "red"; $phpgw_info['theme']['alink'] = 'red';
$phpgw_info["theme"]["link"]= "blue"; $phpgw_info['theme']['link'] = 'blue';
$phpgw_info["theme"]["row_on"]= "DDDDDD"; $phpgw_info['theme']['row_on'] = 'DDDDDD';
$phpgw_info["theme"]["row_off"]= "EEEEEE"; $phpgw_info['theme']['row_off'] = 'EEEEEE';
$phpgw_info["theme"]["row_text"]= "000000"; $phpgw_info['theme']['row_text'] = '000000';
$phpgw_info["theme"]["th_bg"]= "D3DCE3"; $phpgw_info['theme']['th_bg'] = 'D3DCE3';
$phpgw_info["theme"]["th_text"]= "000000"; $phpgw_info['theme']['th_text'] = '000000';
$phpgw_info["theme"]["navbar_bg"]= "990000"; $phpgw_info['theme']['navbar_bg'] = '990000';
$phpgw_info["theme"]["navbar_text"]= "000000"; $phpgw_info['theme']['special_logo'] = 'logo_990000.gif';
$phpgw_info["theme"]["table_bg"]= "9999FF"; $phpgw_info['theme']['navbar_text'] = '000000';
$phpgw_info["theme"]["table_text"]= "000000"; $phpgw_info['theme']['table_bg'] = '9999FF';
$phpgw_info["theme"]["font"]= "Arial, Helvetica, san-serif"; $phpgw_info['theme']['table_text'] = '000000';
$phpgw_info["theme"]["bg01"]= "dadada"; $phpgw_info['theme']['font'] = 'Arial, Helvetica, san-serif';
$phpgw_info["theme"]["bg02"]= "dad0d0"; $phpgw_info['theme']['bg01']= 'dadada';
$phpgw_info["theme"]["bg03"]= "dacaca"; $phpgw_info['theme']['bg02']= 'dad0d0';
$phpgw_info["theme"]["bg04"]= "dac0c0"; $phpgw_info['theme']['bg03']= 'dacaca';
$phpgw_info["theme"]["bg05"]= "dababa"; $phpgw_info['theme']['bg04']= 'dac0c0';
$phpgw_info["theme"]["bg06"]= "dab0b0"; $phpgw_info['theme']['bg05']= 'dababa';
$phpgw_info["theme"]["bg07"]= "daaaaa"; $phpgw_info['theme']['bg06']= 'dab0b0';
$phpgw_info["theme"]["bg08"]= "da9090"; $phpgw_info['theme']['bg07']= 'daaaaa';
$phpgw_info["theme"]["bg09"]= "da8a8a"; $phpgw_info['theme']['bg08']= 'da9090';
$phpgw_info["theme"]["bg10"]= "da7a7a"; $phpgw_info['theme']['bg09']= 'da8a8a';
$phpgw_info['theme']['bg10']= 'da7a7a';
// Theses are for the calendar only // Theses are for the calendar only
$phpgw_info["theme"]["cal_today"]= "FFFFCC"; $phpgw_info['theme']['cal_today']= 'FFFFCC';
$phpgw_info["theme"]["cal_dayview"]= "C0C0C0"; $phpgw_info['theme']['cal_dayview']= 'C0C0C0';
// These are for the email only // These are for the email only
$phpgw_info["theme"]["em_folder"]= "666699"; $phpgw_info['theme']['em_folder']= '666699';
$phpgw_info["theme"]["em_folder_text"]= "FFFFFF"; $phpgw_info['theme']['em_folder_text']= 'FFFFFF';

View File

@ -1,25 +1,37 @@
<?php <?php
$phpgw_info["theme"]["bg_color"]= "ce9592"; /**************************************************************************\
$phpgw_info["theme"]["bg_text"]= "9d1811"; * phpGroupWare *
$phpgw_info["theme"]["vlink"]= "pink"; * http://www.phpgroupware.org *
$phpgw_info["theme"]["alink"]= "red"; * -------------------------------------------- *
$phpgw_info["theme"]["link"]= "red"; * This program is free software; you can redistribute it and/or modify it *
$phpgw_info["theme"]["row_on"]= "DDDDDD"; * under the terms of the GNU General Public License as published by the *
$phpgw_info["theme"]["row_off"]= "EEEEEE"; * Free Software Foundation; either version 2 of the License, or (at your *
$phpgw_info["theme"]["row_text"]= "000000"; * option) any later version. *
$phpgw_info["theme"]["th_bg"]= "ce9592"; \**************************************************************************/
$phpgw_info["theme"]["th_text"]= "9d1811";
$phpgw_info["theme"]["navbar_bg"]= "bd524a"; /* $Id$ */
$phpgw_info["theme"]["navbar_text"]= "9d1811";
$phpgw_info["theme"]["table_bg"]= "ffbab7"; $phpgw_info['theme']['bg_color']= 'ce9592';
$phpgw_info["theme"]["table_text"]= "72022a"; $phpgw_info['theme']['bg_text']= '9d1811';
$phpgw_info["theme"]["font"]= "Arial, Helvetica, san-serif"; $phpgw_info['theme']['vlink']= 'pink';
$phpgw_info['theme']['alink']= 'red';
$phpgw_info['theme']['link']= 'red';
$phpgw_info['theme']['row_on']= 'DDDDDD';
$phpgw_info['theme']['row_off']= 'EEEEEE';
$phpgw_info['theme']['row_text']= '000000';
$phpgw_info['theme']['th_bg']= 'ce9592';
$phpgw_info['theme']['th_text']= '9d1811';
$phpgw_info['theme']['navbar_bg']= 'bd524a';
$phpgw_info['theme']['navbar_text']= '9d1811';
$phpgw_info['theme']['table_bg']= 'ffbab7';
$phpgw_info['theme']['table_text']= '72022a';
$phpgw_info['theme']['font']= 'Arial, Helvetica, san-serif';
// Theses are for the calendar only // Theses are for the calendar only
$phpgw_info["theme"]["cal_today"]= "bd524a"; $phpgw_info['theme']['cal_today']= 'bd524a';
$phpgw_info["theme"]["cal_dayview"]= "C0C0C0"; $phpgw_info['theme']['cal_dayview']= 'C0C0C0';
// These are for the email only // These are for the email only
$phpgw_info["theme"]["em_folder"]= "bd542a"; $phpgw_info['theme']['em_folder']= 'bd542a';
$phpgw_info["theme"]["em_folder_text"]= "9d1811"; $phpgw_info['theme']['em_folder_text']= '9d1811';

View File

@ -1,35 +1,47 @@
<?php <?php
$phpgw_info["theme"]["bg_color"]= "FFFFFF"; /**************************************************************************\
$phpgw_info["theme"]["bg_text"]= "000000"; * phpGroupWare *
$phpgw_info["theme"]["vlink"]= "blue"; * http://www.phpgroupware.org *
$phpgw_info["theme"]["alink"]= "red"; * -------------------------------------------- *
$phpgw_info["theme"]["link"]= "blue"; * This program is free software; you can redistribute it and/or modify it *
$phpgw_info["theme"]["row_on"]= "CCEEFF"; * under the terms of the GNU General Public License as published by the *
$phpgw_info["theme"]["row_off"]= "DDF0FF"; * Free Software Foundation; either version 2 of the License, or (at your *
$phpgw_info["theme"]["row_text"]= "000000"; * option) any later version. *
$phpgw_info["theme"]["th_bg"]= "80BBFF"; \**************************************************************************/
$phpgw_info["theme"]["th_text"]= "000000";
$phpgw_info["theme"]["navbar_bg"]= "80CCFF"; /* $Id$ */
$phpgw_info["theme"]["navbar_text"]= "000000";
$phpgw_info["theme"]["table_bg"]= "7090FF"; $phpgw_info['theme']['bg_color']= 'FFFFFF';
$phpgw_info["theme"]["table_text"]= "000000"; $phpgw_info['theme']['bg_text']= '000000';
$phpgw_info["theme"]["font"]= "Arial, Helvetica, san-serif"; $phpgw_info['theme']['vlink']= 'blue';
$phpgw_info["theme"]["bg01"]= "dadada"; $phpgw_info['theme']['alink']= 'red';
$phpgw_info["theme"]["bg02"]= "dad0d0"; $phpgw_info['theme']['link']= 'blue';
$phpgw_info["theme"]["bg03"]= "dacaca"; $phpgw_info['theme']['row_on']= 'CCEEFF';
$phpgw_info["theme"]["bg04"]= "dac0c0"; $phpgw_info['theme']['row_off']= 'DDF0FF';
$phpgw_info["theme"]["bg05"]= "dababa"; $phpgw_info['theme']['row_text']= '000000';
$phpgw_info["theme"]["bg06"]= "dab0b0"; $phpgw_info['theme']['th_bg']= '80BBFF';
$phpgw_info["theme"]["bg07"]= "daaaaa"; $phpgw_info['theme']['th_text']= '000000';
$phpgw_info["theme"]["bg08"]= "da9090"; $phpgw_info['theme']['navbar_bg']= '80CCFF';
$phpgw_info["theme"]["bg09"]= "da8a8a"; $phpgw_info['theme']['navbar_text']= '000000';
$phpgw_info["theme"]["bg10"]= "da7a7a"; $phpgw_info['theme']['table_bg']= '7090FF';
$phpgw_info['theme']['table_text']= '000000';
$phpgw_info['theme']['font']= 'Arial, Helvetica, san-serif';
$phpgw_info['theme']['bg01']= 'dadada';
$phpgw_info['theme']['bg02']= 'dad0d0';
$phpgw_info['theme']['bg03']= 'dacaca';
$phpgw_info['theme']['bg04']= 'dac0c0';
$phpgw_info['theme']['bg05']= 'dababa';
$phpgw_info['theme']['bg06']= 'dab0b0';
$phpgw_info['theme']['bg07']= 'daaaaa';
$phpgw_info['theme']['bg08']= 'da9090';
$phpgw_info['theme']['bg09']= 'da8a8a';
$phpgw_info['theme']['bg10']= 'da7a7a';
// Theses are for the calendar only // Theses are for the calendar only
$phpgw_info["theme"]["cal_today"]= "FFFFCC"; $phpgw_info['theme']['cal_today']= 'FFFFCC';
$phpgw_info["theme"]["cal_dayview"]= "C0C0C0"; $phpgw_info['theme']['cal_dayview']= 'C0C0C0';
// These are for the email only // These are for the email only
//$phpgw_info["theme"]["em_folder"]= "666699"; //$phpgw_info['theme']['em_folder']= '666699';
$phpgw_info["theme"]["em_folder"]= "7090FF"; $phpgw_info['theme']['em_folder']= '7090FF';
$phpgw_info["theme"]["em_folder_text"]= "FFFFFF"; $phpgw_info['theme']['em_folder_text']= 'FFFFFF';

View File

@ -5,9 +5,9 @@
# template2theme.pl < infile > outfile # template2theme.pl < infile > outfile
# by Stephan # by Stephan
# $Id$ # $Id$
$wrap='$phpgw_info["theme"]["_KEY_"]= "_VAL_"'; $wrap='$phpgw_info['theme']['_KEY_']= '_VAL_'';
print "<?\n"; print '<?\n';
print << "EOF"; print << 'EOF';
# phpGroupWare Theme file # phpGroupWare Theme file
EOF EOF
@ -18,6 +18,6 @@ while( $_ = <STDIN> ) {
my $foo = $wrap; my $foo = $wrap;
$foo =~ s/_KEY_/$k/; $foo =~ s/_KEY_/$k/;
$foo =~ s/_VAL_/$v/; $foo =~ s/_VAL_/$v/;
print "$foo;\n"; print '$foo;\n';
} }
print "?>"; print '?>';

View File

@ -7,12 +7,12 @@
# $Id$ # $Id$
$t=localtime; $t=localtime;
print << "EOF"; print << 'EOF';
# template file for making phpGroupWare themes using template2theme.pl # template file for making phpGroupWare themes using template2theme.pl
EOF EOF
while( $_ = <STDIN> ) { while( $_ = <STDIN> ) {
chomp($_); chomp($_);
next unless ( $_ =~ /\$phpgw_info\[\"theme\"\]\[\"(.*)\"\].*=.*\"(.*)\".*/ ); next unless ( $_ =~ /\$phpgw_info\[\'theme\'\]\[\'(.*)\'\].*=.*\'(.*)\'.*/ );
print "$1=$2\n"; print '$1=$2\n';
} }

View File

@ -1,35 +1,47 @@
<?php <?php
$phpgw_info["theme"]["bg_color"]= "FBF1C5"; /**************************************************************************\
$phpgw_info["theme"]["bg_text"]= "000000"; * phpGroupWare *
$phpgw_info["theme"]["vlink"]= "blue"; * http://www.phpgroupware.org *
$phpgw_info["theme"]["alink"]= "red"; * -------------------------------------------- *
$phpgw_info["theme"]["link"]= "blue"; * This program is free software; you can redistribute it and/or modify it *
$phpgw_info["theme"]["row_on"]= "F7E58F"; * under the terms of the GNU General Public License as published by the *
$phpgw_info["theme"]["row_off"]= "EAD688"; * Free Software Foundation; either version 2 of the License, or (at your *
$phpgw_info["theme"]["row_text"]= "000000"; * option) any later version. *
$phpgw_info["theme"]["th_bg"]= "C8A63B"; \**************************************************************************/
$phpgw_info["theme"]["th_text"]= "000000";
$phpgw_info["theme"]["navbar_bg"]= "F7E58F"; /* $Id$ */
$phpgw_info["theme"]["navbar_text"]= "000000";
$phpgw_info["theme"]["table_bg"]= "EAD688"; $phpgw_info['theme']['bg_color']= 'FBF1C5';
$phpgw_info["theme"]["table_text"]= "C5AA2B"; $phpgw_info['theme']['bg_text']= '000000';
$phpgw_info["theme"]["font"]= "Arial, Helvetica, san-serif"; $phpgw_info['theme']['vlink']= 'blue';
$phpgw_info["theme"]["bg01"]= "FBF4D3"; $phpgw_info['theme']['alink']= 'red';
$phpgw_info["theme"]["bg02"]= "F9EDB3"; $phpgw_info['theme']['link']= 'blue';
$phpgw_info["theme"]["bg03"]= "F5E28B"; $phpgw_info['theme']['row_on']= 'F7E58F';
$phpgw_info["theme"]["bg04"]= "F0D866"; $phpgw_info['theme']['row_off']= 'EAD688';
$phpgw_info["theme"]["bg05"]= "EDCD39"; $phpgw_info['theme']['row_text']= '000000';
$phpgw_info["theme"]["bg06"]= "D5B211"; $phpgw_info['theme']['th_bg']= 'C8A63B';
$phpgw_info["theme"]["bg07"]= "CCAB12"; $phpgw_info['theme']['th_text']= '000000';
$phpgw_info["theme"]["bg08"]= "C58C13"; $phpgw_info['theme']['navbar_bg']= 'F7E58F';
$phpgw_info["theme"]["bg09"]= "B69910"; $phpgw_info['theme']['navbar_text']= '000000';
$phpgw_info["theme"]["bg10"]= "AC9010"; $phpgw_info['theme']['table_bg']= 'EAD688';
$phpgw_info['theme']['table_text']= 'C5AA2B';
$phpgw_info['theme']['font']= 'Arial, Helvetica, san-serif';
$phpgw_info['theme']['bg01']= 'FBF4D3';
$phpgw_info['theme']['bg02']= 'F9EDB3';
$phpgw_info['theme']['bg03']= 'F5E28B';
$phpgw_info['theme']['bg04']= 'F0D866';
$phpgw_info['theme']['bg05']= 'EDCD39';
$phpgw_info['theme']['bg06']= 'D5B211';
$phpgw_info['theme']['bg07']= 'CCAB12';
$phpgw_info['theme']['bg08']= 'C58C13';
$phpgw_info['theme']['bg09']= 'B69910';
$phpgw_info['theme']['bg10']= 'AC9010';
// Theses are for the calendar only // Theses are for the calendar only
$phpgw_info["theme"]["cal_today"]= "FBF1C5"; $phpgw_info['theme']['cal_today']= 'FBF1C5';
$phpgw_info["theme"]["cal_dayview"]= "F9E99F"; $phpgw_info['theme']['cal_dayview']= 'F9E99F';
// These are for the email only // These are for the email only
$phpgw_info["theme"]["em_folder"]= "EAD688"; $phpgw_info['theme']['em_folder']= 'EAD688';
$phpgw_info["theme"]["em_folder_text"]= "000000"; $phpgw_info['theme']['em_folder_text']= '000000';