theme style police
authorteepe <teepe@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 25 Dec 2001 01:41:18 +0000 (01:41 +0000)
committerteepe <teepe@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Tue, 25 Dec 2001 01:41:18 +0000 (01:41 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1927 7612ce4b-ef26-0410-bec9-ea0150e637f0

themes/high_contrast_theme.php
themes/ice_theme.php

index 056289f1998aac77363be9a413ce7b7df5db81e8..9c9a4c47eca46d205999ce7d955a088a147d99b8 100644 (file)
@@ -1,21 +1,30 @@
 <?php
-   /** Author:       Casey A. Peel
-       Date:         July 13, 2000
-       Theme Name:   "High Contrast"
 
-    **/
+/**
+ * high_contrast_theme.php
+ *    Name:    High Contrast
+ *    Author:  Casey A. Peel
+ *    Date:    July 13, 2000
+ *    Comment: 
+ *
+ * Copyright (c) 2000-2002 The SquirrelMail Project Team
+ * Licensed under the GNU GPL. For full terms see the file COPYING.
+ *
+ * $Id$
+ */
+
+global $color;
+$color[0]   = "#818181"; // (light gray)     TitleBar
+$color[1]   = "#FF0000"; // (red)
+$color[2]   = "#CC0000"; // (light red)      Warning/Error Messages
+$color[3]   = "#008080"; // (green-blue)     Left Bar Background
+$color[4]   = "#FFFFFF"; // (white)          Normal Background
+$color[5]   = "#FFFF00"; // (light yellow)   Table Headers
+$color[6]   = "#000000"; // (black)          Text on left bar
+$color[7]   = "#0000FF"; // (blue)           Links
+$color[8]   = "#000000"; // (black)          Normal text
+$color[9]   = "#C0C0C0"; // (mid-gray)       Darker version of #0
+$color[10]  = "#808080"; // (dark gray)      Darker version of #9
+$color[11]  = "#FFFFFF"; // (white)          Special Folders color
 
-    global $color;
-    $color[0]   = "#818181"; // (light gray)     TitleBar
-    $color[1]   = "#FF0000"; // (red)
-    $color[2]   = "#CC0000"; // (light red)      Warning/Error Messages
-    $color[3]   = "#008080"; // (green-blue)     Left Bar Background
-    $color[4]   = "#FFFFFF"; // (white)          Normal Background
-    $color[5]   = "#FFFF00"; // (light yellow)   Table Headers
-    $color[6]   = "#000000"; // (black)          Text on left bar
-    $color[7]   = "#0000FF"; // (blue)           Links
-    $color[8]   = "#000000"; // (black)          Normal text
-    $color[9]   = "#C0C0C0"; // (mid-gray)       Darker version of #0
-    $color[10]  = "#808080"; // (dark gray)      Darker version of #9
-    $color[11]  = "#FFFFFF"; // (white)          Special Folders color
 ?>
index 7ae715d543fdb1392685856af6b233f31ab81e1c..ecbdff90cd56da9b7b8b09e78581dac94ceb9645 100644 (file)
@@ -1,20 +1,30 @@
 <?php
-   /** Author:       Luke Ehresman
-       Date:         January 7 2000
-       Theme Name:   "Ice Theme"
-    **/
 
-    global $color;
-    $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
+/**
+ * ice_theme.php
+ *    Name:    Ice Theme
+ *    Author:  Luke Ehresman
+ *    Date:    January 7 2000
+ *    Comment: 
+ *
+ * Copyright (c) 2000-2002 The SquirrelMail Project Team
+ * Licensed under the GNU GPL. For full terms see the file COPYING.
+ *
+ * $Id$
+ */
+
+global $color;
+$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
+
 ?>