~ubuntu-branches/ubuntu/hardy/squirrelmail/hardy-updates

« back to all changes in this revision

Viewing changes to themes/slashdot_theme.php

  • Committer: Bazaar Package Importer
  • Author(s): Sam Johnston
  • Date: 2004-02-04 01:42:12 UTC
  • Revision ID: james.westby@ubuntu.com-20040204014212-ek9533qvd2vo1wa1
Tags: upstream-1.5.0
ImportĀ upstreamĀ versionĀ 1.5.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
 
 
3
/**
 
4
 * Name:   Slashdot Theme
 
5
 * @author Luke Ehresman
 
6
 * Date:   January 3, 2000
 
7
 * Comment This theme tries to mimic the color scheme from the
 
8
 *         "News for Nerds" web site, www.slashdot.org.
 
9
 *
 
10
 * Copyright (c) 2000-2003 The SquirrelMail Project Team
 
11
 * Licensed under the GNU GPL. For full terms see the file COPYING.
 
12
 *
 
13
 * $Id: slashdot_theme.php,v 1.7 2003/10/28 20:58:30 tassium Exp $
 
14
 * @package squirrelmail
 
15
 * @subpackage themes
 
16
 */
 
17
 
 
18
global $color;
 
19
$color[0]   = '#DCDCDC'; // (light gray)     TitleBar
 
20
$color[1]   = '#800000'; // (red)
 
21
$color[2]   = '#CC0000'; // (light red)      Warning/Error Messages
 
22
$color[3]   = '#006668'; // (/. color)       Left Bar Background
 
23
$color[4]   = '#FFFFFF'; // (white)          Normal Background
 
24
$color[5]   = '#BABABA'; // (darker gray)    Table Headers
 
25
$color[6]   = '#000000'; // (black)          Text on left bar
 
26
$color[7]   = '#004949'; // (light /. color) Links
 
27
$color[8]   = '#000000'; // (black)          Normal text
 
28
$color[9]   = '#ABABAB'; // (mid-gray)       Darker version of #0
 
29
$color[10]  = '#666666'; // (dark gray)      Darker version of #9
 
30
$color[11]  = '#770000'; // (dark red)       Special Folders color
 
31
$color[12]  = '#EAEAEA';
 
32
$color[15]  = '#ABABAB'; // (mid-gray)       Unselectable folders
 
33
 
 
34
?>