source: sandbox/2.3-MailArchiver/phpgwapi/themes/golden.theme @ 6779

Revision 6779, 2.5 KB checked in by rafaelraymundo, 12 years ago (diff)

Ticket #2946 - Liberado Expresso(branch 2.3) integrado ao MailArchiver?.

Line 
1<?php
2        /**************************************************************************\
3        * phpGroupWare                                                             *
4        * http://www.phpgroupware.org                                              *
5        * --------------------------------------------                             *
6        *  This program is free software; you can redistribute it and/or modify it *
7        *  under the terms of the GNU General Public License as published by the   *
8        *  Free Software Foundation; either version 2 of the License, or (at your  *
9        *  option) any later version.                                              *
10        \**************************************************************************/
11
12        /* $Id: golden.theme,v 1.1 2003/10/14 20:01:47 reinerj Exp $ */
13        $phpgw_info['theme']['bg_color']    = '#FFFFFF';
14        $phpgw_info['theme']['bg_text']     = '#000000';
15        $phpgw_info['theme']['vlink']       = 'blue';
16        $phpgw_info['theme']['alink']       = 'red';
17        $phpgw_info['theme']['link']        = 'blue';
18        $phpgw_info['theme']['row_on']      = '#CFC8A6';
19        $phpgw_info['theme']['row_off']     = '#EAE9CA';
20        $phpgw_info['theme']['row_text']    = '#000000';
21        $phpgw_info['theme']['th_bg']       = '#9D8E49';
22        $phpgw_info['theme']['th_text']     = '#000000';
23        $phpgw_info['theme']['navbar_bg']   = '#EAE9CA';
24        $phpgw_info['theme']['navbar_text'] = '#FFFFFF';
25        $phpgw_info['theme']['table_bg']    = '#EAE9CA';
26        $phpgw_info['theme']['table_text']  = '#000000';
27        $phpgw_info['theme']['font']        = 'Arial, Helvetica, san-serif';
28        $phpgw_info['theme']['bg01']        = '#EAE9CA';
29        $phpgw_info['theme']['bg02']        = '#EAE9CA';
30        $phpgw_info['theme']['bg03']        = '#EAE9CA';
31        $phpgw_info['theme']['bg04']        = '#EAE9CA';
32        $phpgw_info['theme']['bg05']        = '#EAE9CA';
33        $phpgw_info['theme']['bg06']        = '#EAE9CA';
34        $phpgw_info['theme']['bg07']        = '#EAE9CA';
35        $phpgw_info['theme']['bg08']        = '#EAE9CA';
36        $phpgw_info['theme']['bg09']        = '#EAE9CA';
37        $phpgw_info['theme']['bg10']        = '#EAE9CA';
38
39        // Theses are for the calendar only
40        $phpgw_info['theme']['cal_today']   = '#FFFFCC';
41        $phpgw_info['theme']['cal_dayview'] = '#C0C0C0';
42
43        // These are for the email only
44        $phpgw_info['theme']['em_folder']      = '#725E21';
45        $phpgw_info['theme']['em_folder_text'] = '#FFFFFF';
46
47        // the iDots template uses only css and the default theme (this file)
48        if ($GLOBALS['phpgw_info']['user']['preferences']['common']['template_set'] == 'idots')
49        {
50                $phpgw_info['theme']['row_off'] = '#ECE9DC';
51        }
Note: See TracBrowser for help on using the repository browser.