added ICE theme
authorlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 7 Jan 2000 20:02:15 +0000 (20:02 +0000)
committerlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 7 Jan 2000 20:02:15 +0000 (20:02 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@132 7612ce4b-ef26-0410-bec9-ea0150e637f0

config/config.php
config/ice_theme.php [new file with mode: 0644]
functions/page_header.php

index bdfd20cd93b99a6cd32d3429a66c603f18106d6a..a18227d9911e8d0eb8bb8bd00b6be068fbc2c1ad 100644 (file)
@@ -57,6 +57,9 @@
     $theme[5]["PATH"] = "../config/forest_theme.php";
     $theme[5]["NAME"] = "Forest";
 
+    $theme[6]["PATH"] = "../config/ice_theme.php";
+    $theme[6]["NAME"] = "Ice";
+
 //  Whether or not to use a special color for special folders.  If not, special
 //  folders will be the same color as the other folders
     $use_special_folder_color = true;
diff --git a/config/ice_theme.php b/config/ice_theme.php
new file mode 100644 (file)
index 0000000..200ce8c
--- /dev/null
@@ -0,0 +1,19 @@
+<?
+   /** Author:       Luke Ehresman
+       Date:         January 7 2000
+       Theme Name:   "Ice Theme"
+    **/
+
+    $color[0]   = "C0DAFF"; // TitleBar
+    $color[1]   = "800000"; // Error Message
+    $color[2]   = "CC0000"; // Warning/Error Messages
+    $color[3]   = "B0CAFF"; // Left Bar Background
+    $color[4]   = "FFFFFF"; // Normal Background
+    $color[5]   = "D0EAFF"; // Table Headers
+    $color[6]   = "000000"; // Text on left bar
+    $color[7]   = "8888FF"; // Links
+    $color[8]   = "000000"; // Normal text
+    $color[9]   = "D0EAFF"; // Darker version of #0
+    $color[10]  = "F0FAFF"; // Darker version of #9
+    $color[11]  = "770000"; // Special Folders color
+?>
index e8b360ea87020a7051cca28a0398884ca4749e05..b5d71d5e5c0095658b8ea2f39def69e5d228a645 100644 (file)
@@ -10,7 +10,7 @@
       /** Here is the header and wrapping table **/
       $shortBoxName = readShortMailboxName($mailbox, ".");
       echo "<TABLE BGCOLOR=\"$color[4]\" BORDER=0 COLS=2 WIDTH=100% CELLSPACING=0 CELLPADDING=2>";
-      echo "   <TR BGCOLOR=\"$color[3]\" WIDTH=100%>";
+      echo "   <TR BGCOLOR=\"$color[9]\" WIDTH=100%>";
       echo "      <TD ALIGN=left WIDTH=30%>";
       echo "         <FONT FACE=\"Arial,Helvetica\"><A HREF=\"signout.php\" TARGET=_top><B>Sign Out</B></A></FONT>";
       echo "      </TD><TD ALIGN=right WIDTH=70%>";