Browse Source

added ICE theme

Luke Ehresman 25 years ago
parent
commit
c46cda229f
3 changed files with 23 additions and 1 deletions
  1. 3 0
      config/config.php
  2. 19 0
      config/ice_theme.php
  3. 1 1
      functions/page_header.php

+ 3 - 0
config/config.php

@@ -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;

+ 19 - 0
config/ice_theme.php

@@ -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
+?>

+ 1 - 1
functions/page_header.php

@@ -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%>";