Added new forest theme
authorlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 7 Jan 2000 17:19:54 +0000 (17:19 +0000)
committerlkehresman <lkehresman@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 7 Jan 2000 17:19:54 +0000 (17:19 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@124 7612ce4b-ef26-0410-bec9-ea0150e637f0

config/config.php
config/forest_theme.php [new file with mode: 0644]

index e56e86e63c48bdb132b98dcefee84892bb6f7ff4..bdfd20cd93b99a6cd32d3429a66c603f18106d6a 100644 (file)
@@ -54,6 +54,9 @@
     $theme[4]["PATH"] = "../config/purple_theme.php";
     $theme[4]["NAME"] = "Purple";
 
+    $theme[5]["PATH"] = "../config/forest_theme.php";
+    $theme[5]["NAME"] = "Forest";
+
 //  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/forest_theme.php b/config/forest_theme.php
new file mode 100644 (file)
index 0000000..5c0e4d8
--- /dev/null
@@ -0,0 +1,21 @@
+<?
+   /** Author:       Luke Ehresman
+       Date:         January 7, 2000
+       Theme Name:   "Forest Theme"
+
+       This theme uses Forest-ish colors (mostly green)
+    **/
+
+    $color[0]   = "9EBFA7"; // (light purp)     TitleBar
+    $color[1]   = "800000"; // (red)
+    $color[2]   = "CC0000"; // (light red)      Warning/Error Messages
+    $color[3]   = "244B30"; // (purple)         Left Bar Background
+    $color[4]   = "DEFFE7"; // (light purple)   Normal Background
+    $color[5]   = "B6D7BF"; // (darker gray)    Table Headers
+    $color[6]   = "DDFFDD"; // (black)          Text on left bar
+    $color[7]   = "3C7F50"; // (light purple)   Links
+    $color[8]   = "000000"; // (black)          Normal text
+    $color[9]   = "7E9F87"; // (mid purp)       Darker version of #0
+    $color[10]  = "5E7F67"; // (dark purp)      Darker version of #9
+    $color[11]  = "4A9B62"; // (dark red)       Special Folders color
+?>
\ No newline at end of file