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

« back to all changes in this revision

Viewing changes to themes/bluesnews_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:    BluesNews
 
5
 * @author Ray Black
 
6
 * Date:    August 15, 2000
 
7
 * Comment: In the long tradition of mimicing popular sites, I bring
 
8
 *          you the 'inspired by BluesNews.com' theme. Simple, high-
 
9
 *          contrast colorset, easy to read with very little eye strain.
 
10
 *
 
11
 * Copyright (c) 2000-2003 The SquirrelMail Project Team
 
12
 * Licensed under the GNU GPL. For full terms see the file COPYING.
 
13
 *
 
14
 * $Id: bluesnews_theme.php,v 1.7 2003/10/28 20:58:29 tassium Exp $
 
15
 * @package squirrelmail
 
16
 * @subpackage themes
 
17
 */
 
18
 
 
19
global $color;
 
20
$color[0]   = '#181818'; // (off-black)                 TitleBar
 
21
$color[1]   = '#A0A0A0'; // (gray)                              Quoted Replies in Emails
 
22
$color[2]   = '#800000'; // (red)                               Warning/Error Messages
 
23
$color[3]   = '#000000'; // (black)                             Left Bar Background
 
24
$color[4]   = '#000000'; // (black)                             Normal Background
 
25
$color[5]   = '#000080'; // (bright blue)               Table Headers
 
26
$color[6]   = '#FFFF80'; // (bright yellow)             Text on left bar
 
27
$color[7]   = '#FFFF80'; // (bright yellow)             Links
 
28
$color[8]   = '#FFFFFF'; // (white)                             Normal text
 
29
$color[9]   = '#000080'; // (bright blue)               Darker version of #0
 
30
$color[10]  = '#000080'; // (bright blue)               Darker version of #9
 
31
$color[11]  = '#3333FF'; // (dull blue)                 Special Folders color
 
32
$color[12]  = '#808080'; //                     Alternate rows
 
33
$color[15]  = '#C0C060'; // (dull yellow)         Unselectable folders
 
34
 
 
35
?>