added blue theme
authorlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 30 Apr 2000 20:27:19 +0000 (20:27 +0000)
committerlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 30 Apr 2000 20:27:19 +0000 (20:27 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@484 7612ce4b-ef26-0410-bec9-ea0150e637f0

ChangeLog
config/config_default.php
config/plain_blue_theme.php [new file with mode: 0755]

index 1ef217a86cea86ffa94f31ab6b2b479c0b9d001b..e3de956e9aa79d3187baf21435976ac052449580 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 Version 0.4pre2 -- DEVELOPMENT
 ------------------------------
+- Made folder listing look first at subscribed folders, making it
+  faster, even if you don't have $folder_prefix set.
+- Fixed some bugs with default sent and trash folders
+- Fixed some bugs with folder manipulating
 
 
 Version 0.4pre1 -- April 29, 2000
index 4f8fd87654e6ca22ed7420ab03110880d5d8ffdc..9679ddb7dcce997403b5125f7cade215239ef9e3 100644 (file)
     $theme[7]["PATH"] = "../config/seaspray_theme.php";
     $theme[7]["NAME"] = "Sea Spray";
 
+    $theme[8]["PATH"] = "../config/plain_blue_theme.php";
+    $theme[8]["NAME"] = "Plain Blue";
+
 
 //  LDAP server(s)
 //
diff --git a/config/plain_blue_theme.php b/config/plain_blue_theme.php
new file mode 100755 (executable)
index 0000000..4d65eaf
--- /dev/null
@@ -0,0 +1,19 @@
+<?php
+   /** Author:       Luke Ehresman
+       Date:         April 30, 2000
+       Theme Name:   "Plain Blue"
+    **/
+
+    $color[0]   = "#B2C5D4"; // (light gray)     TitleBar
+    $color[1]   = "#800000"; // (red)
+    $color[2]   = "#CC0000"; // (light red)      Warning/Error Messages
+    $color[3]   = "#6795B9"; // (green-blue)     Left Bar Background
+    $color[4]   = "#FFFFFF"; // (white)          Normal Background
+    $color[5]   = "#98B0C3"; // (light yellow)   Table Headers
+    $color[6]   = "#000000"; // (black)          Text on left bar
+    $color[7]   = "#0000CC"; // (blue)           Links
+    $color[8]   = "#000000"; // (black)          Normal text
+    $color[9]   = "#94ADC1"; // (mid-gray)       Darker version of #0
+    $color[10]  = "#8D97A0"; // (dark gray)      Darker version of #9
+    $color[11]  = "#770000"; // (dark red)       Special Folders color
+?>