mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:44 +01:00
52 lines
2.4 KiB
Plaintext
52 lines
2.4 KiB
Plaintext
<?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$ */
|
|
$phpgw_info['theme']['bg_color'] = '#FFFFFF';
|
|
$phpgw_info['theme']['bg_text'] = '#000000';
|
|
$phpgw_info['theme']['vlink'] = 'blue';
|
|
$phpgw_info['theme']['alink'] = 'red';
|
|
$phpgw_info['theme']['link'] = 'blue';
|
|
$phpgw_info['theme']['row_on'] = '#CFC8A6';
|
|
$phpgw_info['theme']['row_off'] = '#EAE9CA';
|
|
$phpgw_info['theme']['row_text'] = '#000000';
|
|
$phpgw_info['theme']['th_bg'] = '#9D8E49';
|
|
$phpgw_info['theme']['th_text'] = '#000000';
|
|
$phpgw_info['theme']['navbar_bg'] = '#EAE9CA';
|
|
$phpgw_info['theme']['navbar_text'] = '#FFFFFF';
|
|
$phpgw_info['theme']['table_bg'] = '#EAE9CA';
|
|
$phpgw_info['theme']['table_text'] = '#000000';
|
|
$phpgw_info['theme']['font'] = 'Arial, Helvetica, san-serif';
|
|
$phpgw_info['theme']['bg01'] = '#EAE9CA';
|
|
$phpgw_info['theme']['bg02'] = '#EAE9CA';
|
|
$phpgw_info['theme']['bg03'] = '#EAE9CA';
|
|
$phpgw_info['theme']['bg04'] = '#EAE9CA';
|
|
$phpgw_info['theme']['bg05'] = '#EAE9CA';
|
|
$phpgw_info['theme']['bg06'] = '#EAE9CA';
|
|
$phpgw_info['theme']['bg07'] = '#EAE9CA';
|
|
$phpgw_info['theme']['bg08'] = '#EAE9CA';
|
|
$phpgw_info['theme']['bg09'] = '#EAE9CA';
|
|
$phpgw_info['theme']['bg10'] = '#EAE9CA';
|
|
|
|
// Theses are for the calendar only
|
|
$phpgw_info['theme']['cal_today'] = '#FFFFCC';
|
|
$phpgw_info['theme']['cal_dayview'] = '#C0C0C0';
|
|
|
|
// These are for the email only
|
|
$phpgw_info['theme']['em_folder'] = '#725E21';
|
|
$phpgw_info['theme']['em_folder_text'] = '#FFFFFF';
|
|
|
|
// the iDots template uses only css and the default theme (this file)
|
|
if ($GLOBALS['phpgw_info']['user']['preferences']['common']['template_set'] == 'idots')
|
|
{
|
|
$phpgw_info['theme']['row_off'] = '#ECE9DC';
|
|
}
|