浏览代码

added two new themes

Luke Ehresman 25 年之前
父节点
当前提交
1b4e90d7e9
共有 4 个文件被更改,包括 54 次插入0 次删除
  1. 1 0
      ChangeLog
  2. 6 0
      config/config_default.php
  3. 22 0
      themes/bluesnews_theme.php
  4. 25 0
      themes/maize_theme.php

+ 1 - 0
ChangeLog

@@ -1,5 +1,6 @@
 Version 0.5pre2 -- DEVELOPMENT
 ------------------------------
+- Added quite a few new themes
 - Fixed double folder problem on some servers
 - Using encryption for passwords
 - Added a patch from Bill Thousand to allow easier virtual domains

+ 6 - 0
config/config_default.php

@@ -221,6 +221,12 @@
     $theme[13]["PATH"] = "../themes/servery_theme.php";
     $theme[13]["NAME"] = "Servery";
 
+    $theme[14]["PATH"] = "../themes/maize_theme.php";
+    $theme[14]["NAME"] = "Maize";
+
+    $theme[15]["PATH"] = "../themes/bluesnews_theme.php";
+    $theme[15]["NAME"] = "BluesNews";
+
 //  LDAP server(s)
 //
 //    Array of arrays with LDAP server parameters. See

+ 22 - 0
themes/bluesnews_theme.php

@@ -0,0 +1,22 @@
+<?php
+   /** Author:       Ray Black
+       Date:         August 15, 2000
+       Theme Name:   "BluesNews"
+	   Comments:     In the long tradition of mimicing popular sites, I bring
+	                 you the 'inspired by BluesNews.com' theme. Simple, high-
+					 contrast colorset, easy to read with very little eye strain.
+    **/
+
+    $color[0]   = "#181818"; // (off-black)			TitleBar
+    $color[1]   = "#A0A0A0"; // (gray)				Quoted Replies in Emails
+    $color[2]   = "#800000"; // (red)				Warning/Error Messages
+    $color[3]   = "#000000"; // (black)				Left Bar Background
+    $color[4]   = "#000000"; // (black)				Normal Background
+    $color[5]   = "#000080"; // (bright blue)		Table Headers
+    $color[6]   = "#FFFF80"; // (bright yellow)		Text on left bar
+    $color[7]   = "#FFFF80"; // (bright yellow)		Links
+    $color[8]   = "#FFFFFF"; // (white)				Normal text
+    $color[9]   = "#000080"; // (bright blue)		Darker version of #0
+    $color[10]  = "#000080"; // (bright blue)		Darker version of #9
+    $color[11]  = "#3333FF"; // (dull blue)			Special Folders color
+?>

+ 25 - 0
themes/maize_theme.php

@@ -0,0 +1,25 @@
+<?php
+   /** Author:       Ray Black
+       Date:         August 15, 2000
+       Theme Name:   "Maize"
+	   Comments:     Staying with the 'South of the border food' theme,
+	                 I bring you Maize to accompany Black Bean Burrito.
+					 As the Furbies say: Yum! Oh, message highlighting
+					 looks best with colors in the neighborhood of
+					 #7A6A50, bumping up the red, green and blue where
+					 necessary.
+    **/
+
+    $color[0]   = "#B0B0B0"; // (gray)				TitleBar
+    $color[1]   = "#A04040"; // (dull red)			Quoted Replies in Emails
+    $color[2]   = "#F04040"; // (bright red)		Warning/Error Messages
+    $color[3]   = "#DFCFBF"; // (antique white)		Left Bar Background
+    $color[4]   = "#DFCFBF"; // (antique white)		Normal Background
+    $color[5]   = "#755A45"; // (light brown)		Table Headers
+    $color[6]   = "#101010"; // (off-black)			Text on left bar
+    $color[7]   = "#800000"; // (red)				Links
+    $color[8]   = "#000000"; // (black)				Normal text
+    $color[9]   = "#909090"; // (darker gray)		Darker version of #0
+    $color[10]  = "#606060"; // (darkest gray)		Darker version of #9
+    $color[11]  = "#600000"; // (lighter red)		Special Folders color
+?>