forked from extern/egroupware
62 lines
4.0 KiB
Plaintext
Executable File
62 lines
4.0 KiB
Plaintext
Executable File
<?php
|
|
/**************************************************************************\
|
|
* phpGroupWare *
|
|
* http://www.phpgroupware.org *
|
|
* -------------------------------------------- *
|
|
* 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. *
|
|
\**************************************************************************/
|
|
|
|
/* $Id$ */
|
|
|
|
$GLOBALS['phpgw_info']['theme']['bg_color'] = '#ffffff';
|
|
$GLOBALS['phpgw_info']['theme']['bg_text'] = '#000000';
|
|
// vlink is annoying and unncessary for most apps, make same as link
|
|
//$GLOBALS['phpgw_info']['theme']['vlink'] = '#333366';
|
|
$GLOBALS['phpgw_info']['theme']['vlink'] = '#336699';
|
|
$GLOBALS['phpgw_info']['theme']['alink'] = '#ff0000';
|
|
// A.hover in CSS currently works only with idsociety theme + template combo
|
|
$GLOBALS['phpgw_info']['theme']['hovlink'] = '#cc0000';
|
|
$GLOBALS['phpgw_info']['theme']['link'] = '#336699';
|
|
$GLOBALS['phpgw_info']['theme']['row_on'] = '#dddddd';
|
|
$GLOBALS['phpgw_info']['theme']['row_off'] = '#eeeeee';
|
|
$GLOBALS['phpgw_info']['theme']['row_text'] = '#000000';
|
|
$GLOBALS['phpgw_info']['theme']['th_bg'] = '#adadad';
|
|
$GLOBALS['phpgw_info']['theme']['th_text'] = '#000000';
|
|
$GLOBALS['phpgw_info']['theme']['navbar_bg'] = '#adadad';
|
|
$GLOBALS['phpgw_info']['theme']['navbar_text'] = '#ffffff';
|
|
$GLOBALS['phpgw_info']['theme']['table_bg'] = '#9999ff';
|
|
$GLOBALS['phpgw_info']['theme']['table_text'] = '#000000';
|
|
$GLOBALS['phpgw_info']['theme']['font'] = 'Arial, Helvetica, san-serif';
|
|
$GLOBALS['phpgw_info']['theme']['bg01'] = '#dadada';
|
|
$GLOBALS['phpgw_info']['theme']['bg02'] = '#dad0d0';
|
|
$GLOBALS['phpgw_info']['theme']['bg03'] = '#dacaca';
|
|
$GLOBALS['phpgw_info']['theme']['bg04'] = '#dac0c0';
|
|
$GLOBALS['phpgw_info']['theme']['bg05'] = '#dababa';
|
|
$GLOBALS['phpgw_info']['theme']['bg06'] = '#dab0b0';
|
|
$GLOBALS['phpgw_info']['theme']['bg07'] = '#daaaaa';
|
|
$GLOBALS['phpgw_info']['theme']['bg08'] = '#da9090';
|
|
$GLOBALS['phpgw_info']['theme']['bg09'] = '#da8a8a';
|
|
$GLOBALS['phpgw_info']['theme']['bg10'] = '#da7a7a';
|
|
|
|
// Theses are for the calendar only
|
|
$GLOBALS['phpgw_info']['theme']['cal_today'] = '#ffffcc';
|
|
$GLOBALS['phpgw_info']['theme']['cal_dayview'] = '#c0c0c0';
|
|
|
|
// These are for the email only
|
|
$GLOBALS['phpgw_info']['theme']['em_folder'] = '#adadad';
|
|
$GLOBALS['phpgw_info']['theme']['em_folder_text'] = '#ffffff';
|
|
|
|
// This is the CSS definition
|
|
$GLOBALS['phpgw_info']['theme']['css']['.navbar'] = 'font-family: Verdana;font-size: 8pt; color:#000000;}';
|
|
$GLOBALS['phpgw_info']['theme']['css']['.bodytext'] = 'font-family: Verdana; font-size: 8pt; color:#000000;';
|
|
$GLOBALS['phpgw_info']['theme']['css']['.whitetext'] = 'font-family: Verdana; font-size: 8pt; color:#ffffff;';
|
|
$GLOBALS['phpgw_info']['theme']['css']['.headertext'] = 'font-family: Verdana; font-size: 11pt; font-weight: bold; color:#ffffff;';
|
|
$GLOBALS['phpgw_info']['theme']['css']['.inputtext'] = ' font-family: Verdana; font-size: 8pt; color="#000000"; background-color="#ffffff";';
|
|
$GLOBALS['phpgw_info']['theme']['css']['.buttontext'] = 'font-family: Verdana; font-size: 8pt; color="#000000"; background-color="#c0c0c0";';
|
|
$GLOBALS['phpgw_info']['theme']['css']['.linktext'] = 'font-family: Verdana; font-size: 8pt; color="#000000"; background-color="#c0c0c0";';
|
|
$GLOBALS['phpgw_info']['theme']['css']['.row_on'] = 'font-family: Verdana; font-size: 8pt; color="#000000"; background-color="#c0c0c0";';
|
|
$GLOBALS['phpgw_info']['theme']['css']['.row_off'] = 'font-family: Verdana; font-size: 8pt; color="#000000"; background-color="#c0c0c0";';
|