moving main color tags to css
[squirrelmail.git] / themes / minimal_bw.php
CommitLineData
cc47a3f0 1<?php
4b4abf93 2
c4309fbd 3/**
c4309fbd 4 * Date: July 26, 2003
5 * Theme Name: 'Minimal BW Theme'
eb548244 6 *
c4309fbd 7 * This theme uses black color for text and white for background.
eb548244 8 *
c4309fbd 9 * Problem: $color[9] is used for background and for disabled links.
4b4abf93 10 *
11 * @author Tomas Kuliavas
12 * @copyright &copy; 2003-2005 The SquirrelMail Project Team
13 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
14 * @version $Id$
c4309fbd 15 * @package squirrelmail
16 * @subpackage themes
17 */
cc47a3f0 18
19 global $color;
eb548244 20 $color[0] = '#ffffff'; // (white) TitleBar
cc47a3f0 21 $color[1] = '#000000'; // (black) (unused)
22 $color[2] = '#000000'; // (black) Warning/Error Messages
eb548244 23 $color[3] = '#ffffff'; // (white) Left Bar Background
24 $color[4] = '#ffffff'; // (white) Normal Background
25 $color[5] = '#ffffff'; // (white) Table Headers
cc47a3f0 26 $color[6] = '#000000'; // (black) Text on left bar
27 $color[7] = '#000000'; // (black) Links
28 $color[8] = '#000000'; // (black) Normal text
eb548244 29 $color[9] = '#ffffff'; // (white) Darker version of #0
30 $color[10] = '#ffffff'; // (white) Darker version of #9
cc47a3f0 31 $color[11] = '#000000'; // (black) Special Folders color
eb548244 32 $color[12] = '#ffffff'; // (white) Alternate color for message list
cc47a3f0 33 $color[13] = '#000000'; // (black) Color for quoted text -- > 1 quote
34 $color[14] = '#000000'; // (black) Color for quoted text -- >> 2 or more
35 $color[15] = '#000000'; // (black) Unselectable folders
eb548244 36?>